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

Unified Diff: third_party/WebKit/Source/modules/device_orientation/DeviceOrientationDispatcher.h

Issue 2415083002: Move Device Sensors client files from Blink to //device/sensors client lib (Closed)
Patch Set: Rebase Created 3 years, 9 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: third_party/WebKit/Source/modules/device_orientation/DeviceOrientationDispatcher.h
diff --git a/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationDispatcher.h b/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationDispatcher.h
index c2edae34c0c0d647892cb4fc15dd8a3449f8a8b9..419e787d738bde5b500f00fb02ff19f5464779f6 100644
--- a/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationDispatcher.h
+++ b/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationDispatcher.h
@@ -37,10 +37,13 @@
#include "public/platform/modules/device_orientation/WebDeviceOrientationListener.h"
#include "wtf/RefPtr.h"
+namespace device {
+class OrientationData;
+}
+
namespace blink {
class DeviceOrientationData;
-class WebDeviceOrientationData;
// This class listens to device orientation data and notifies all registered
// controllers.
@@ -59,7 +62,7 @@ class DeviceOrientationDispatcher final
DeviceOrientationData* latestDeviceOrientationData();
// Inherited from WebDeviceOrientationListener.
- void didChangeDeviceOrientation(const WebDeviceOrientationData&) override;
+ void didChangeDeviceOrientation(const device::OrientationData&) override;
DECLARE_VIRTUAL_TRACE();

Powered by Google App Engine
This is Rietveld 408576698