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

Unified Diff: content/browser/screen_orientation/screen_orientation_listener_android.h

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: content/browser/screen_orientation/screen_orientation_listener_android.h
diff --git a/content/browser/screen_orientation/screen_orientation_listener_android.h b/content/browser/screen_orientation/screen_orientation_listener_android.h
deleted file mode 100644
index 680af976dd3756bd09425577c58fa685f6e7bcc5..0000000000000000000000000000000000000000
--- a/content/browser/screen_orientation/screen_orientation_listener_android.h
+++ /dev/null
@@ -1,40 +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.
-
-#ifndef CONTENT_BROWSER_SCREEN_ORIENTATION_SCREEN_ORIENTATION_LISTENER_ANDROID_H_
-#define CONTENT_BROWSER_SCREEN_ORIENTATION_SCREEN_ORIENTATION_LISTENER_ANDROID_H_
-
-#include "base/macros.h"
-#include "content/public/browser/browser_associated_interface.h"
-#include "content/public/browser/browser_message_filter.h"
-#include "device/screen_orientation/public/interfaces/screen_orientation.mojom.h"
-
-namespace content {
-
-class ScreenOrientationListenerAndroid
- : public BrowserMessageFilter,
- public BrowserAssociatedInterface<
- device::mojom::ScreenOrientationListener>,
- public NON_EXPORTED_BASE(device::mojom::ScreenOrientationListener) {
- public:
- ScreenOrientationListenerAndroid();
-
- // BrowserMessageFilter implementation.
- bool OnMessageReceived(const IPC::Message& message) override;
-
- private:
- ~ScreenOrientationListenerAndroid() override;
-
- // device::mojom::ScreenOrientationListener:
- void Start() override;
- void Stop() override;
-
- int listeners_count_;
-
- DISALLOW_COPY_AND_ASSIGN(ScreenOrientationListenerAndroid);
-};
-
-} // namespace content
-
-#endif // CONTENT_BROWSER_SCREEN_ORIENTATION_SCREEN_ORIENTATION_LISTENER_ANDROID_H_

Powered by Google App Engine
This is Rietveld 408576698