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

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

Issue 2035543004: Shuffles and renames ash/common/wm classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: random changes for chrome tests Created 4 years, 6 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 6fcb63c5bc1e64a83cc869d6965a3ab24b1ebe98..4f18f1215fa5634448c2ff38138d547e32322e5a 100644
--- a/ash/mus/bridge/wm_lookup_mus.cc
+++ b/ash/mus/bridge/wm_lookup_mus.cc
@@ -4,8 +4,8 @@
#include "ash/mus/bridge/wm_lookup_mus.h"
-#include "ash/mus/bridge/wm_globals_mus.h"
#include "ash/mus/bridge/wm_root_window_controller_mus.h"
+#include "ash/mus/bridge/wm_shell_mus.h"
#include "ash/mus/bridge/wm_window_mus.h"
#include "ui/views/widget/widget.h"
@@ -21,12 +21,12 @@ WmLookupMus::~WmLookupMus() {
WmLookup::Set(nullptr);
}
-wm::WmRootWindowController* WmLookupMus::GetRootWindowControllerWithDisplayId(
+WmRootWindowController* WmLookupMus::GetRootWindowControllerWithDisplayId(
int64_t id) {
- return WmGlobalsMus::Get()->GetRootWindowControllerWithDisplayId(id);
+ return WmShellMus::Get()->GetRootWindowControllerWithDisplayId(id);
}
-wm::WmWindow* WmLookupMus::GetWindowForWidget(views::Widget* widget) {
+WmWindow* WmLookupMus::GetWindowForWidget(views::Widget* widget) {
return WmWindowMus::Get(widget);
}

Powered by Google App Engine
This is Rietveld 408576698