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

Unified Diff: ash/root_window_controller.h

Issue 2626483002: Removes WmShelfAura and WmShelfMus (Closed)
Patch Set: Fix chrome 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/root_window_controller.h
diff --git a/ash/root_window_controller.h b/ash/root_window_controller.h
index 7a61c55ba13ddf278322318db8e5fc8ca489f3bd..c153fbe99d8d52ec412776035e5f06ed6a6c0ce4 100644
--- a/ash/root_window_controller.h
+++ b/ash/root_window_controller.h
@@ -52,7 +52,7 @@ class SystemWallpaperController;
class TouchHudDebug;
class TouchHudProjection;
class WmRootWindowControllerAura;
-class WmShelfAura;
+class WmShelf;
class WorkspaceController;
#if defined(OS_CHROMEOS)
@@ -97,7 +97,7 @@ class ASH_EXPORT RootWindowController : public ShellObserver {
WorkspaceController* workspace_controller();
- WmShelfAura* wm_shelf_aura() const { return wm_shelf_aura_.get(); }
+ WmShelf* wm_shelf() const { return wm_shelf_.get(); }
WmRootWindowControllerAura* wm_root_window_controller() {
return wm_root_window_controller_;
@@ -219,7 +219,7 @@ class ASH_EXPORT RootWindowController : public ShellObserver {
// The shelf controller for this root window. Exists for the entire lifetime
// of the RootWindowController so that it is safe for observers to be added
// to it during construction of the shelf widget and status tray.
- std::unique_ptr<WmShelfAura> wm_shelf_aura_;
+ std::unique_ptr<WmShelf> wm_shelf_;
std::unique_ptr<SystemWallpaperController> system_wallpaper_;

Powered by Google App Engine
This is Rietveld 408576698