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 #ifndef DEVICE_GENERIC_SENSOR_PLATFORM_SENSOR_CONFIGURATION_ANDROID_H_ |
| 6 #define DEVICE_GENERIC_SENSOR_PLATFORM_SENSOR_CONFIGURATION_ANDROID_H_ |
| 7 |
| 8 #include "base/android/scoped_java_ref.h" |
| 9 #include "device/generic_sensor/platform_sensor_configuration.h" |
| 10 |
| 11 namespace device { |
| 12 |
| 13 class PlatformSensorConfigurationAndroid : public PlatformSensorConfiguration { |
| 14 public: |
| 15 static base::android::ScopedJavaLocalRef<jobject> Create( |
| 16 JNIEnv* env, |
| 17 const PlatformSensorConfiguration& configuration); |
| 18 |
| 19 static PlatformSensorConfiguration Convert( |
| 20 JNIEnv* env, |
| 21 const base::android::JavaRef<jobject>& configuration); |
| 22 }; |
| 23 |
| 24 } // namespace device |
| 25 |
| 26 #endif // DEVICE_GENERIC_SENSOR_SENSOR_CONFIGURATION_ANDROID_H_ |
OLD | NEW |