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

Unified Diff: ash/common/root_window_controller_common.h

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/common/root_window_controller_common.h
diff --git a/ash/common/root_window_controller_common.h b/ash/common/root_window_controller_common.h
index 3386d4838d197b64e68fdb8348197edb56bec1cb..7262587928cae5032da233d4ab6fb9f7afc6c34f 100644
--- a/ash/common/root_window_controller_common.h
+++ b/ash/common/root_window_controller_common.h
@@ -8,9 +8,11 @@
#include "base/macros.h"
namespace ash {
+
+class WmWindow;
+
namespace wm {
class RootWindowLayoutManager;
-class WmWindow;
}
// This will eventually become what is RootWindowController. During the
@@ -18,7 +20,7 @@ class WmWindow;
// It should *not* contain any aura specific code.
class RootWindowControllerCommon {
public:
- explicit RootWindowControllerCommon(wm::WmWindow* root);
+ explicit RootWindowControllerCommon(WmWindow* root);
~RootWindowControllerCommon();
// Creates the containers (WmWindows) used by the shell.
@@ -32,7 +34,7 @@ class RootWindowControllerCommon {
}
private:
- wm::WmWindow* root_;
+ WmWindow* root_;
wm::RootWindowLayoutManager* root_window_layout_;

Powered by Google App Engine
This is Rietveld 408576698