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

Unified Diff: content/renderer/device_sensors/device_orientation_event_pump.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: content/renderer/device_sensors/device_orientation_event_pump.h
diff --git a/content/renderer/device_sensors/device_orientation_event_pump.h b/content/renderer/device_sensors/device_orientation_event_pump.h
index 0f9e181925988a34d9ed9840c99c56b2e249e416..8c3ef14935b6511270d8da5faae93c9a974e2da9 100644
--- a/content/renderer/device_sensors/device_orientation_event_pump.h
+++ b/content/renderer/device_sensors/device_orientation_event_pump.h
@@ -10,8 +10,8 @@
#include "base/macros.h"
#include "content/renderer/device_sensors/device_sensor_event_pump.h"
#include "content/renderer/shared_memory_seqlock_reader.h"
+#include "device/sensors/public/cpp/orientation_data.h"
#include "device/sensors/public/interfaces/orientation.mojom.h"
-#include "third_party/WebKit/public/platform/modules/device_orientation/WebDeviceOrientationData.h"
namespace blink {
class WebDeviceOrientationListener;
@@ -19,7 +19,7 @@ class WebDeviceOrientationListener;
namespace content {
-typedef SharedMemorySeqLockReader<blink::WebDeviceOrientationData>
+typedef SharedMemorySeqLockReader<device::OrientationData>
DeviceOrientationSharedMemoryReader;
class CONTENT_EXPORT DeviceOrientationEventPumpBase
@@ -39,9 +39,9 @@ class CONTENT_EXPORT DeviceOrientationEventPumpBase
void FireEvent() override;
bool InitializeReader(base::SharedMemoryHandle handle) override;
- bool ShouldFireEvent(const blink::WebDeviceOrientationData& data) const;
+ bool ShouldFireEvent(const device::OrientationData& data) const;
- blink::WebDeviceOrientationData data_;
+ device::OrientationData data_;
std::unique_ptr<DeviceOrientationSharedMemoryReader> reader_;
DISALLOW_COPY_AND_ASSIGN(DeviceOrientationEventPumpBase);

Powered by Google App Engine
This is Rietveld 408576698