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

Unified Diff: services/device/generic_sensor/sensor_provider_impl.h

Issue 2898433002: Revert of Move //device/generic_sensor to be part of the internal implementation of the Device Service. (Closed)
Patch Set: 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: services/device/generic_sensor/sensor_provider_impl.h
diff --git a/services/device/generic_sensor/sensor_provider_impl.h b/services/device/generic_sensor/sensor_provider_impl.h
deleted file mode 100644
index d99f0eafd2d26a4d635dbde01c491748be1e0dcd..0000000000000000000000000000000000000000
--- a/services/device/generic_sensor/sensor_provider_impl.h
+++ /dev/null
@@ -1,51 +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 SERVICES_DEVICE_GENERIC_SENSOR_SENSOR_PROVIDER_IMPL_H_
-#define SERVICES_DEVICE_GENERIC_SENSOR_SENSOR_PROVIDER_IMPL_H_
-
-#include "base/macros.h"
-#include "base/single_thread_task_runner.h"
-#include "services/device/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 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 // SERVICES_DEVICE_GENERIC_SENSOR_SENSOR_PROVIDER_IMPL_H_
« no previous file with comments | « services/device/generic_sensor/sensor_impl.cc ('k') | services/device/generic_sensor/sensor_provider_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698