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

Unified Diff: content/renderer/device_sensors/device_orientation_event_pump.h

Issue 2037513002: Convert device_sensors to use mojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@conversion--mime-registry
Patch Set: Created 4 years, 5 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 26587e78041b937bafb14a5ea73d6ea06a00a580..0f9e181925988a34d9ed9840c99c56b2e249e416 100644
--- a/content/renderer/device_sensors/device_orientation_event_pump.h
+++ b/content/renderer/device_sensors/device_orientation_event_pump.h
@@ -10,6 +10,7 @@
#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/interfaces/orientation.mojom.h"
#include "third_party/WebKit/public/platform/modules/device_orientation/WebDeviceOrientationData.h"
namespace blink {
@@ -21,36 +22,39 @@ namespace content {
typedef SharedMemorySeqLockReader<blink::WebDeviceOrientationData>
DeviceOrientationSharedMemoryReader;
-class CONTENT_EXPORT DeviceOrientationEventPump
+class CONTENT_EXPORT DeviceOrientationEventPumpBase
: public DeviceSensorEventPump<blink::WebDeviceOrientationListener> {
public:
// Angle threshold beyond which two orientation events are considered
// sufficiently different.
static const double kOrientationThreshold;
- explicit DeviceOrientationEventPump(RenderThread* thread);
- ~DeviceOrientationEventPump() override;
+ explicit DeviceOrientationEventPumpBase(RenderThread* thread);
+ ~DeviceOrientationEventPumpBase() override;
// PlatformEventObserver.
- bool OnControlMessageReceived(const IPC::Message& message) override;
void SendFakeDataForTesting(void* data) override;
protected:
void FireEvent() override;
bool InitializeReader(base::SharedMemoryHandle handle) override;
- // PlatformEventObserver.
- void SendStartMessage() override;
- void SendStopMessage() override;
-
bool ShouldFireEvent(const blink::WebDeviceOrientationData& data) const;
blink::WebDeviceOrientationData data_;
std::unique_ptr<DeviceOrientationSharedMemoryReader> reader_;
- DISALLOW_COPY_AND_ASSIGN(DeviceOrientationEventPump);
+ DISALLOW_COPY_AND_ASSIGN(DeviceOrientationEventPumpBase);
};
+using DeviceOrientationEventPump =
+ DeviceSensorMojoClientMixin<DeviceOrientationEventPumpBase,
+ device::mojom::OrientationSensor>;
+
+using DeviceOrientationAbsoluteEventPump =
+ DeviceSensorMojoClientMixin<DeviceOrientationEventPumpBase,
+ device::mojom::OrientationAbsoluteSensor>;
+
} // namespace content
#endif // CONTENT_RENDERER_DEVICE_SENSORS_DEVICE_ORIENTATION_EVENT_PUMP_H_

Powered by Google App Engine
This is Rietveld 408576698