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 |