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

Unified Diff: content/renderer/screen_orientation/screen_orientation_observer.cc

Issue 446603002: Refactor code listening to platform events in content/renderer/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@webkitplatform_impl_start_stop
Patch Set: rebase Created 6 years, 4 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/screen_orientation/screen_orientation_observer.cc
diff --git a/content/renderer/screen_orientation/screen_orientation_observer.cc b/content/renderer/screen_orientation/screen_orientation_observer.cc
new file mode 100644
index 0000000000000000000000000000000000000000..e3fc407ed1331b8b5ef3d2017c0530b727f5673d
--- /dev/null
+++ b/content/renderer/screen_orientation/screen_orientation_observer.cc
@@ -0,0 +1,29 @@
+// Copyright 2014 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/screen_orientation/screen_orientation_observer.h"
+
+#include "content/common/screen_orientation_messages.h"
+
+namespace content {
+
+ScreenOrientationObserver::ScreenOrientationObserver() {
+}
+
+void ScreenOrientationObserver::Start(
+ blink::WebPlatformEventListener* listener) {
+ // This should never be called with a proper listener.
+ CHECK(listener == 0);
+ PlatformEventObserver<blink::WebPlatformEventListener>::Start(0);
+}
+
+void ScreenOrientationObserver::SendStartMessage() {
+ RenderThread::Get()->Send(new ScreenOrientationHostMsg_StartListening());
+}
+
+void ScreenOrientationObserver::SendStopMessage() {
+ RenderThread::Get()->Send(new ScreenOrientationHostMsg_StopListening());
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698