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

Unified Diff: ash/mus/bridge/wm_lookup_mus.cc

Issue 2642003002: Removes ash::mus::RootWindowController (Closed)
Patch Set: feedback 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_lookup_mus.cc
diff --git a/ash/mus/bridge/wm_lookup_mus.cc b/ash/mus/bridge/wm_lookup_mus.cc
index d0bc4e58dc3acd0a835dbee5d5e202c15a9d3cb2..b5cab151e7f2d959003de31614669f39027a6bcf 100644
--- a/ash/mus/bridge/wm_lookup_mus.cc
+++ b/ash/mus/bridge/wm_lookup_mus.cc
@@ -6,7 +6,6 @@
#include "ash/common/wm_window.h"
#include "ash/mus/bridge/wm_shell_mus.h"
-#include "ash/mus/root_window_controller.h"
#include "ui/views/widget/widget.h"
namespace ash {
@@ -21,11 +20,9 @@ WmLookupMus::~WmLookupMus() {
WmLookup::Set(nullptr);
}
-ash::RootWindowController* WmLookupMus::GetRootWindowControllerWithDisplayId(
+RootWindowController* WmLookupMus::GetRootWindowControllerWithDisplayId(
int64_t id) {
- return WmShellMus::Get()
- ->GetRootWindowControllerWithDisplayId(id)
- ->ash_root_window_controller();
+ return WmShellMus::Get()->GetRootWindowControllerWithDisplayId(id);
}
WmWindow* WmLookupMus::GetWindowForWidget(views::Widget* widget) {

Powered by Google App Engine
This is Rietveld 408576698