OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 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 "device/generic_sensor/platform_sensor_configuration_android.h" |
| 6 |
| 7 #include "jni/PlatformSensorConfiguration_jni.h" |
| 8 |
| 9 namespace device { |
| 10 |
| 11 // static |
| 12 base::android::ScopedJavaLocalRef<jobject> |
| 13 PlatformSensorConfigurationAndroid::Create( |
| 14 JNIEnv* env, |
| 15 const PlatformSensorConfiguration& configuration) { |
| 16 return Java_PlatformSensorConfiguration_create( |
| 17 env, static_cast<jdouble>(configuration.frequency())); |
| 18 } |
| 19 |
| 20 // static |
| 21 PlatformSensorConfiguration PlatformSensorConfigurationAndroid::Convert( |
| 22 JNIEnv* env, |
| 23 const base::android::JavaRef<jobject>& configuration) { |
| 24 jdouble frequency = |
| 25 Java_PlatformSensorConfiguration_getFrequency(env, configuration); |
| 26 return PlatformSensorConfiguration(static_cast<double>(frequency)); |
| 27 } |
| 28 |
| 29 } // namespace device |
OLD | NEW |