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

Unified Diff: content/public/browser/sensor_manager_delegate_chromeos.h

Issue 680383007: DeviceOrientation API on ChromeOS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 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
« no previous file with comments | « content/content_tests.gypi ('k') | content/public/browser/sensor_manager_delegate_chromeos.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « content/content_tests.gypi ('k') | content/public/browser/sensor_manager_delegate_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698