Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2734)

Unified Diff: device/generic_sensor/platform_sensor_provider_android.cc

Issue 2865263002: Move //device/generic_sensor to be part of the internal implementation of the Device Service. (Closed)
Patch Set: code rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: device/generic_sensor/platform_sensor_provider_android.cc
diff --git a/device/generic_sensor/platform_sensor_provider_android.cc b/device/generic_sensor/platform_sensor_provider_android.cc
deleted file mode 100644
index 05a008a2cfb3982b1f2026e0cbb1cf9c5db4623e..0000000000000000000000000000000000000000
--- a/device/generic_sensor/platform_sensor_provider_android.cc
+++ /dev/null
@@ -1,47 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "device/generic_sensor/platform_sensor_provider_android.h"
-
-#include "base/android/scoped_java_ref.h"
-#include "base/memory/singleton.h"
-#include "device/generic_sensor/platform_sensor_android.h"
-#include "jni/PlatformSensorProvider_jni.h"
-
-using base::android::AttachCurrentThread;
-using base::android::ScopedJavaLocalRef;
-
-namespace device {
-
-// static
-PlatformSensorProviderAndroid* PlatformSensorProviderAndroid::GetInstance() {
- return base::Singleton<
- PlatformSensorProviderAndroid,
- base::LeakySingletonTraits<PlatformSensorProviderAndroid>>::get();
-}
-
-PlatformSensorProviderAndroid::PlatformSensorProviderAndroid() {
- JNIEnv* env = AttachCurrentThread();
- j_object_.Reset(Java_PlatformSensorProvider_create(env));
-}
-
-PlatformSensorProviderAndroid::~PlatformSensorProviderAndroid() = default;
-
-void PlatformSensorProviderAndroid::CreateSensorInternal(
- mojom::SensorType type,
- mojo::ScopedSharedBufferMapping mapping,
- const CreateSensorCallback& callback) {
- JNIEnv* env = AttachCurrentThread();
- ScopedJavaLocalRef<jobject> sensor = Java_PlatformSensorProvider_createSensor(
- env, j_object_.obj(), static_cast<jint>(type));
-
- if (!sensor.obj())
- callback.Run(nullptr);
-
- scoped_refptr<PlatformSensorAndroid> concrete_sensor =
- new PlatformSensorAndroid(type, std::move(mapping), this, sensor);
- callback.Run(concrete_sensor);
-}
-
-} // namespace device
« no previous file with comments | « device/generic_sensor/platform_sensor_provider_android.h ('k') | device/generic_sensor/platform_sensor_provider_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698