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

Unified Diff: device/generic_sensor/sensor_provider_impl.h

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
« no previous file with comments | « device/generic_sensor/sensor_impl.cc ('k') | device/generic_sensor/sensor_provider_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/generic_sensor/sensor_provider_impl.h
diff --git a/device/generic_sensor/sensor_provider_impl.h b/device/generic_sensor/sensor_provider_impl.h
deleted file mode 100644
index 3435f12351c82bad804baec6eb04cbcfa3c47a8c..0000000000000000000000000000000000000000
--- a/device/generic_sensor/sensor_provider_impl.h
+++ /dev/null
@@ -1,53 +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.
-
-#ifndef DEVICE_GENERIC_SENSOR_SENSOR_PROVIDER_IMPL_H_
-#define DEVICE_GENERIC_SENSOR_SENSOR_PROVIDER_IMPL_H_
-
-#include "base/macros.h"
-#include "base/single_thread_task_runner.h"
-#include "device/generic_sensor/generic_sensor_export.h"
-#include "device/generic_sensor/public/interfaces/sensor_provider.mojom.h"
-
-namespace device {
-
-class PlatformSensorProvider;
-class PlatformSensor;
-
-// Implementation of SensorProvider mojo interface.
-// Uses PlatformSensorProvider singleton to create platform specific instances
-// of PlatformSensor which are used by SensorImpl.
-class DEVICE_GENERIC_SENSOR_EXPORT SensorProviderImpl final
- : public mojom::SensorProvider {
- public:
- static void Create(
- scoped_refptr<base::SingleThreadTaskRunner> file_task_runner,
- mojom::SensorProviderRequest request);
-
- ~SensorProviderImpl() override;
-
- private:
- explicit SensorProviderImpl(PlatformSensorProvider* provider);
-
- // SensorProvider implementation.
- void GetSensor(mojom::SensorType type,
- mojom::SensorRequest sensor_request,
- const GetSensorCallback& callback) override;
-
- // Helper callback method to return created sensors.
- void SensorCreated(mojom::SensorType type,
- mojo::ScopedSharedBufferHandle cloned_handle,
- mojom::SensorRequest sensor_request,
- const GetSensorCallback& callback,
- scoped_refptr<PlatformSensor> sensor);
-
- PlatformSensorProvider* provider_;
- base::WeakPtrFactory<SensorProviderImpl> weak_ptr_factory_;
-
- DISALLOW_COPY_AND_ASSIGN(SensorProviderImpl);
-};
-
-} // namespace device
-
-#endif // DEVICE_GENERIC_SENSOR_SENSOR_PROVIDER_IMPL_H_
« no previous file with comments | « device/generic_sensor/sensor_impl.cc ('k') | device/generic_sensor/sensor_provider_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698