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

Unified Diff: ash/desktop_background/desktop_background_widget_controller.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/desktop_background/desktop_background_widget_controller.h
diff --git a/ash/desktop_background/desktop_background_widget_controller.h b/ash/desktop_background/desktop_background_widget_controller.h
index dcfaee036c2b64aaba3ab9fd12b5940640b45ecd..22845545e459d1707dd2e9294c1407f54aaf7fc3 100644
--- a/ash/desktop_background/desktop_background_widget_controller.h
+++ b/ash/desktop_background/desktop_background_widget_controller.h
@@ -8,7 +8,7 @@
#include <memory>
#include "ash/ash_export.h"
-#include "ash/common/wm/wm_window_observer.h"
+#include "ash/common/wm_window_observer.h"
#include "base/macros.h"
#include "ui/views/widget/widget_observer.h"
@@ -25,7 +25,7 @@ class RootWindowController;
// destroyed. Exported for tests.
class ASH_EXPORT DesktopBackgroundWidgetController
: public views::WidgetObserver,
- public wm::WmWindowObserver {
+ public WmWindowObserver {
public:
// Create
explicit DesktopBackgroundWidgetController(views::Widget* widget);
@@ -55,15 +55,15 @@ class ASH_EXPORT DesktopBackgroundWidgetController
private:
void RemoveObservers();
- // wm::WmWindowObserver:
- void OnWindowBoundsChanged(wm::WmWindow* window,
+ // WmWindowObserver:
+ void OnWindowBoundsChanged(WmWindow* window,
const gfx::Rect& old_bounds,
const gfx::Rect& new_bounds) override;
views::Widget* widget_;
// Parent of |widget_|.
- wm::WmWindow* widget_parent_;
+ WmWindow* widget_parent_;
DISALLOW_COPY_AND_ASSIGN(DesktopBackgroundWidgetController);
};

Powered by Google App Engine
This is Rietveld 408576698