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

Unified Diff: Source/modules/screen_orientation/ScreenOrientationDispatcher.cpp

Issue 419643008: Make Screen Orientation use Platform Events in order to handle polling. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@platform_events
Patch Set: rebase Created 6 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
« no previous file with comments | « Source/modules/screen_orientation/ScreenOrientationDispatcher.h ('k') | public/platform/Platform.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/screen_orientation/ScreenOrientationDispatcher.cpp
diff --git a/Source/modules/screen_orientation/ScreenOrientationDispatcher.cpp b/Source/modules/screen_orientation/ScreenOrientationDispatcher.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..98eeedd71035e7dec7818d5ec6f6bbcdbe62d381
--- /dev/null
+++ b/Source/modules/screen_orientation/ScreenOrientationDispatcher.cpp
@@ -0,0 +1,36 @@
+// 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 "config.h"
+#include "modules/screen_orientation/ScreenOrientationDispatcher.h"
+
+#include "public/platform/Platform.h"
+
+namespace blink {
+
+ScreenOrientationDispatcher& ScreenOrientationDispatcher::instance()
+{
+ DEFINE_STATIC_LOCAL(ScreenOrientationDispatcher, screenOrientationDispatcher, ());
+ return screenOrientationDispatcher;
+}
+
+ScreenOrientationDispatcher::ScreenOrientationDispatcher()
+{
+}
+
+ScreenOrientationDispatcher::~ScreenOrientationDispatcher()
+{
+}
+
+void ScreenOrientationDispatcher::startListening()
+{
+ blink::Platform::current()->startListening(WebPlatformEventScreenOrientation, 0);
+}
+
+void ScreenOrientationDispatcher::stopListening()
+{
+ blink::Platform::current()->stopListening(WebPlatformEventScreenOrientation);
+}
+
+} // namespace blink
« no previous file with comments | « Source/modules/screen_orientation/ScreenOrientationDispatcher.h ('k') | public/platform/Platform.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698