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

Unified Diff: content/renderer/device_sensors/device_orientation_absolute_event_pump.cc

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_absolute_event_pump.cc
diff --git a/content/renderer/device_sensors/device_orientation_absolute_event_pump.cc b/content/renderer/device_sensors/device_orientation_absolute_event_pump.cc
deleted file mode 100644
index bbab5ffddafc5a422facff594fa62ac2c49169e0..0000000000000000000000000000000000000000
--- a/content/renderer/device_sensors/device_orientation_absolute_event_pump.cc
+++ /dev/null
@@ -1,40 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "content/renderer/device_sensors/device_orientation_absolute_event_pump.h"
-
-#include "content/common/device_sensors/device_orientation_messages.h"
-#include "content/public/renderer/render_thread.h"
-#include "third_party/WebKit/public/platform/modules/device_orientation/WebDeviceOrientationListener.h"
-
-namespace content {
-
-DeviceOrientationAbsoluteEventPump::DeviceOrientationAbsoluteEventPump(
- RenderThread* thread) : DeviceOrientationEventPump(thread) {
-}
-
-DeviceOrientationAbsoluteEventPump::~DeviceOrientationAbsoluteEventPump() {
-}
-
-bool DeviceOrientationAbsoluteEventPump::OnControlMessageReceived(
- const IPC::Message& message) {
- bool handled = true;
- IPC_BEGIN_MESSAGE_MAP(DeviceOrientationAbsoluteEventPump, message)
- IPC_MESSAGE_HANDLER(DeviceOrientationAbsoluteMsg_DidStartPolling,
- OnDidStart)
- IPC_MESSAGE_UNHANDLED(handled = false)
- IPC_END_MESSAGE_MAP()
- return handled;
-}
-
-void DeviceOrientationAbsoluteEventPump::SendStartMessage() {
- RenderThread::Get()->Send(
- new DeviceOrientationAbsoluteHostMsg_StartPolling());
-}
-
-void DeviceOrientationAbsoluteEventPump::SendStopMessage() {
- RenderThread::Get()->Send(new DeviceOrientationAbsoluteHostMsg_StopPolling());
-}
-
-} // namespace content

Powered by Google App Engine
This is Rietveld 408576698