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

Unified Diff: content/browser/device_sensors/sensor_manager_chromeos.h

Issue 2646093002: Move //content/browser/device_sensor/ into device/sensors (Closed)
Patch Set: gn format & code rebase Created 3 years, 11 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: content/browser/device_sensors/sensor_manager_chromeos.h
diff --git a/content/browser/device_sensors/sensor_manager_chromeos.h b/content/browser/device_sensors/sensor_manager_chromeos.h
deleted file mode 100644
index 7af9231b69e79a9065d48e7c561853838de3d8c8..0000000000000000000000000000000000000000
--- a/content/browser/device_sensors/sensor_manager_chromeos.h
+++ /dev/null
@@ -1,69 +0,0 @@
-// Copyright 2015 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 CONTENT_BROWSER_DEVICE_SENSORS_SENSOR_MANAGER_CHROMEOS_H_
-#define CONTENT_BROWSER_DEVICE_SENSORS_SENSOR_MANAGER_CHROMEOS_H_
-
-#include "base/macros.h"
-#include "base/threading/thread_checker.h"
-#include "chromeos/accelerometer/accelerometer_reader.h"
-#include "chromeos/accelerometer/accelerometer_types.h"
-#include "content/common/content_export.h"
-#include "device/sensors/public/cpp/device_motion_hardware_buffer.h"
-#include "device/sensors/public/cpp/device_orientation_hardware_buffer.h"
-
-namespace content {
-
-// Observes Chrome OS accelerometer sensors, and provides updated device
-// orientation information.
-class CONTENT_EXPORT SensorManagerChromeOS
- : public chromeos::AccelerometerReader::Observer {
- public:
- SensorManagerChromeOS();
- ~SensorManagerChromeOS() override;
-
- // Begins monitoring of motion events, the shared memory of |buffer| will be
- // updated upon subsequent events.
- void StartFetchingDeviceMotionData(DeviceMotionHardwareBuffer* buffer);
-
- // Stops monitoring motion events. Returns true if there is an active
- // |motion_buffer_| and fetching stops. Otherwise returns false.
- bool StopFetchingDeviceMotionData();
-
- // Begins monitoring of orientation events, the shared memory of |buffer| will
- // be updated upon subsequent events.
- void StartFetchingDeviceOrientationData(
- DeviceOrientationHardwareBuffer* buffer);
-
- // Stops monitoring orientation events. Returns true if there is an active
- // |orientation_buffer_| and fetching stops. Otherwise returns false.
- bool StopFetchingDeviceOrientationData();
-
- // chromeos::AccelerometerReader::Observer:
- void OnAccelerometerUpdated(
- scoped_refptr<const chromeos::AccelerometerUpdate> update) override;
-
- protected:
- // Begins/ends the observation of accelerometer events.
- virtual void StartObservingAccelerometer();
- virtual void StopObservingAccelerometer();
-
- private:
- // Updates |motion_buffer_| or |orientation_buffer_| accordingly.
- void GenerateMotionEvent(double x, double y, double z);
- void GenerateOrientationEvent(double x, double y, double z);
-
- // Shared memory to update.
- DeviceMotionHardwareBuffer* motion_buffer_;
- DeviceOrientationHardwareBuffer* orientation_buffer_;
-
- // Verify all work is done on the same thread.
- base::ThreadChecker thread_checker_;
-
- DISALLOW_COPY_AND_ASSIGN(SensorManagerChromeOS);
-};
-
-} // namespace content
-
-#endif // CONTENT_BROWSER_DEVICE_SENSORS_SENSOR_MANAGER_CHROMEOS_H_

Powered by Google App Engine
This is Rietveld 408576698