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

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

Issue 2688383002: [ScreenOrientation] Merge mojo interface ScreenOrientationListener into ScreenOrientation
Patch Set: Address comments from mlamouri@ Created 3 years, 10 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: third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationDispatcher.cpp
diff --git a/third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationDispatcher.cpp b/third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationDispatcher.cpp
deleted file mode 100644
index fccceedf4be6573204b6e60490409cf2c016a675..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationDispatcher.cpp
+++ /dev/null
@@ -1,31 +0,0 @@
-// 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 "modules/screen_orientation/ScreenOrientationDispatcher.h"
-
-#include "public/platform/Platform.h"
-
-namespace blink {
-
-ScreenOrientationDispatcher& ScreenOrientationDispatcher::instance() {
- DEFINE_STATIC_LOCAL(ScreenOrientationDispatcher, screenOrientationDispatcher,
- (new ScreenOrientationDispatcher));
- return screenOrientationDispatcher;
-}
-
-ScreenOrientationDispatcher::ScreenOrientationDispatcher() {}
-
-DEFINE_TRACE(ScreenOrientationDispatcher) {
- PlatformEventDispatcher::trace(visitor);
-}
-
-void ScreenOrientationDispatcher::startListening() {
- Platform::current()->startListening(WebPlatformEventTypeScreenOrientation, 0);
-}
-
-void ScreenOrientationDispatcher::stopListening() {
- Platform::current()->stopListening(WebPlatformEventTypeScreenOrientation);
-}
-
-} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698