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

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

Issue 2751513007: [Device Service] Eliminate content::ScreenOrientationObserver. (Closed)
Patch Set: Use DCHECK(!m_listener) in destructor Created 3 years, 9 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
deleted file mode 100644
index 92b69fed4a3f7febb988bcadf1b16906fbd5cbbe..0000000000000000000000000000000000000000
--- a/content/renderer/screen_orientation/screen_orientation_observer.cc
+++ /dev/null
@@ -1,47 +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 "content/renderer/screen_orientation/screen_orientation_observer.h"
-
-#include "content/public/common/service_manager_connection.h"
-#include "content/renderer/render_thread_impl.h"
-#include "services/device/public/interfaces/constants.mojom.h"
-#include "services/service_manager/public/cpp/connector.h"
-
-namespace content {
-
-ScreenOrientationObserver::ScreenOrientationObserver() {
-}
-
-ScreenOrientationObserver::~ScreenOrientationObserver() {
- StopIfObserving();
-}
-
-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() {
- GetScreenOrientationListener()->Start();
-}
-
-void ScreenOrientationObserver::SendStopMessage() {
- GetScreenOrientationListener()->Stop();
-}
-
-device::mojom::ScreenOrientationListener*
-ScreenOrientationObserver::GetScreenOrientationListener() {
- if (!listener_) {
- RenderThreadImpl::current()
- ->GetServiceManagerConnection()
- ->GetConnector()
- ->BindInterface(device::mojom::kServiceName, &listener_);
- }
- return listener_.get();
-}
-
-} // namespace content

Powered by Google App Engine
This is Rietveld 408576698