Index: content/public/browser/sensor_manager_delegate_chromeos.h |
diff --git a/content/public/browser/sensor_manager_delegate_chromeos.h b/content/public/browser/sensor_manager_delegate_chromeos.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f78c3bfd9144b64d499d67ce5911e2a655edb3d4 |
--- /dev/null |
+++ b/content/public/browser/sensor_manager_delegate_chromeos.h |
@@ -0,0 +1,47 @@ |
+// Copyright 2014 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_PUBLIC_BROWSER_SENSOR_MANAGER_DELEGATE_CHROMEOS_H_ |
+#define CONTENT_PUBLIC_BROWSER_SENSOR_MANAGER_DELEGATE_CHROMEOS_H_ |
+ |
+#include "base/callback.h" |
+#include "base/macros.h" |
+#include "content/common/content_export.h" |
+ |
+namespace content { |
+ |
+typedef base::Callback<void(double x, double y, double z)> |
+ OrientationDataCallback; |
+ |
+// For platforms with a push API for accelerometer sensors this delegate can be |
+// implemented. Once notified to start fetching data, the callback provided can |
+// be used to send the data. |
+// TODO(jonross): Once accelerometer reading has been moved to |
+// content/browser/device_sensors/ remove this delegate. Instead have |
+// content/public/browser expose an observer for ChromeOS. (crbug.com/431865) |
+class CONTENT_EXPORT SensorManagerDelegateChromeOS { |
+ public: |
+ virtual ~SensorManagerDelegateChromeOS(); |
+ |
+ // Allows platforms to provide a delegate. |
+ static void SetDelegate(SensorManagerDelegateChromeOS* delegate); |
+ |
+ // Start processing accelerometer events for orientation. The values can be |
+ // passed via |callback| |
+ virtual void StartFetchingDeviceOrientationData( |
+ const OrientationDataCallback& callback) = 0; |
+ |
+ // Stop processing accelerometer events for orientation. |
+ virtual void StopFetchingDeviceOrientationData() = 0; |
+ |
+ protected: |
+ SensorManagerDelegateChromeOS(); |
+ |
+ private: |
+ DISALLOW_COPY_AND_ASSIGN(SensorManagerDelegateChromeOS); |
+}; |
+ |
+} // namespace content |
+ |
+#endif // CONTENT_PUBLIC_BROWSER_SENSOR_MANAGER_DELEGATE_CHROMEOS_H_ |