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

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

Issue 680383007: DeviceOrientation API on ChromeOS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase and Rob's comment Created 6 years, 1 month 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.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.h
diff --git a/content/public/browser/sensor_manager_delegate.h b/content/public/browser/sensor_manager_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..f32ce300df8b0b5b615f0745a58e929d08907b5c
--- /dev/null
+++ b/content/public/browser/sensor_manager_delegate.h
@@ -0,0 +1,53 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
timvolodine 2014/11/24 14:51:05 also should this file be called _chromeos, since i
jonross 2014/11/24 22:53:01 Done.
+// 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_H_
+#define CONTENT_PUBLIC_BROWSER_SENSOR_MANAGER_DELEGATE_H_
+
+#include "base/callback.h"
+#include "base/macros.h"
+#include "content/common/content_export.h"
+
+template <typename T>
+struct DefaultSingletonTraits;
+
+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.
+class CONTENT_EXPORT SensorManagerDelegate {
timvolodine 2014/11/24 14:51:05 The implementation uses lots of singletons (e.g. b
jonross 2014/11/24 22:53:01 This poses some problems with how the code is curr
+ public:
+ SensorManagerDelegate();
+ virtual ~SensorManagerDelegate();
+
+ // Returns the SensorManagerDelegate singleton
+ static SensorManagerDelegate* GetInstance();
timvolodine 2014/11/24 14:51:05 you have both GetInstance() and public constructor
jonross 2014/11/24 22:53:01 I've moved the constructor to protected. GetInstan
+
+ // True if a SensorManagerDelegate has been set.
+ static bool HasInstance();
+
+ // Allows platforms to provide a delegate.
+ static void SetDelegate(SensorManagerDelegate* 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;
+
+ private:
+ static SensorManagerDelegate* delegate_;
+
+ DISALLOW_COPY_AND_ASSIGN(SensorManagerDelegate);
+};
+
+} // namespace content
+
+#endif // CONTENT_PUBLIC_BROWSER_SENSOR_MANAGER_DELEGATE_H_
« no previous file with comments | « content/content_tests.gypi ('k') | content/public/browser/sensor_manager_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698