blob: 56de031c7b5d4e502905a01bd42326dd0743e446 [file] [log] [blame]
Keigo Oka74352ad82024-12-09 05:58:481// Copyright 2024 The Chromium Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "ui/base/text/bytes_formatting.h"
6
7#include <jni.h>
8
9#include "base/android/jni_string.h"
10#include "ui/android/ui_android_jni_headers/BytesFormatting_jni.h"
11
12namespace ui {
13
14static jni_zero::ScopedJavaLocalRef<jstring> JNI_BytesFormatting_FormatSpeed(
15 JNIEnv* env,
16 jlong speed) {
17 return base::android::ConvertUTF16ToJavaString(env, FormatSpeed(speed));
18}
19
20} // namespace ui