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

Unified Diff: ash/mus/bridge/wm_window_mus.h

Issue 2620913003: Removes WmRootWindowController subclasses (Closed)
Patch Set: WmLookupAura::GetRootWindowControllerWithDisplayId needs to handle null Created 3 years, 11 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: ash/mus/bridge/wm_window_mus.h
diff --git a/ash/mus/bridge/wm_window_mus.h b/ash/mus/bridge/wm_window_mus.h
index f4c8fcdb449fe3a919b5d7e0b0d0ba427208d06e..2957814db7d95d8d065acb055e375f53287349a2 100644
--- a/ash/mus/bridge/wm_window_mus.h
+++ b/ash/mus/bridge/wm_window_mus.h
@@ -21,8 +21,6 @@ class Widget;
namespace ash {
namespace mus {
-class WmRootWindowControllerMus;
-
// WmWindow implementation for mus.
//
// WmWindowMus is tied to the life of the underlying aura::Window (it is stored
@@ -43,12 +41,6 @@ class WmWindowMus : public WmWindowAura {
static WmWindowMus* Get(views::Widget* widget);
- WmRootWindowControllerMus* GetRootWindowControllerMus() {
- return const_cast<WmRootWindowControllerMus*>(
- const_cast<const WmWindowMus*>(this)->GetRootWindowControllerMus());
- }
- const WmRootWindowControllerMus* GetRootWindowControllerMus() const;
-
static WmWindowMus* AsWmWindowMus(WmWindow* window) {
return static_cast<WmWindowMus*>(window);
}

Powered by Google App Engine
This is Rietveld 408576698