You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
658 B

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/android/timezone_utils.h"
#include <string>
#include "base/android/jni_android.h"
#include "base/android/jni_string.h"
#include "base/base_jni_headers/TimezoneUtils_jni.h"
namespace base {
namespace android {
std::u16string GetDefaultTimeZoneId() {
JNIEnv* env = base::android::AttachCurrentThread();
ScopedJavaLocalRef<jstring> timezone_id =
Java_TimezoneUtils_getDefaultTimeZoneId(env);
return ConvertJavaStringToUTF16(timezone_id);
}
} // namespace android
} // namespace base