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

Unified Diff: Source/Platform/chromium/public/Platform.h

Issue 14460010: Implement the Blink part of the Device Motion API. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: moved tests to be treated in a separate CL Created 7 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: Source/Platform/chromium/public/Platform.h
diff --git a/Source/Platform/chromium/public/Platform.h b/Source/Platform/chromium/public/Platform.h
index 566305709c633907bf65e267ca185e78e0b2df96..62cbb1f715c54ebc3a46b3f855f0898bee7082ea 100644
--- a/Source/Platform/chromium/public/Platform.h
+++ b/Source/Platform/chromium/public/Platform.h
@@ -54,6 +54,7 @@ class WebBlobRegistry;
class WebClipboard;
class WebCompositorSupport;
class WebCookieJar;
+class WebDeviceMotionListener;
class WebDiscardableMemory;
class WebFallbackThemeEngine;
class WebFileSystem;
@@ -510,6 +511,12 @@ public:
virtual void didStartWorkerRunLoop(const WebWorkerRunLoop&) { }
virtual void didStopWorkerRunLoop(const WebWorkerRunLoop&) { }
+ // Device Motion / Orientation ----------------------------------------
darin (slow to review) 2013/05/23 19:08:09 nit: convention in this file is to have two new li
timvolodine 2013/05/23 19:30:31 Done.
+
+ // Sets a Listener to listen for device motion data updates.
+ // If null, the platform stops providing device motion data to the current listener.
+ virtual void setDeviceMotionListener(WebKit::WebDeviceMotionListener*) { }
+
protected:
virtual ~Platform() { }
};

Powered by Google App Engine
This is Rietveld 408576698