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

Unified Diff: ash/mus/bridge/mus_layout_manager_adapter.h

Issue 2182633011: Replaces ::ui:: with ui:: in ash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « ash/mus/app_launch_unittest.cc ('k') | ash/mus/bridge/mus_layout_manager_adapter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mus/bridge/mus_layout_manager_adapter.h
diff --git a/ash/mus/bridge/mus_layout_manager_adapter.h b/ash/mus/bridge/mus_layout_manager_adapter.h
index a04bb87f1ac43d92581a0c0615ec32c0aaaabe6b..f22fc0ed159d7a85d7ae79e173794b79c546df2c 100644
--- a/ash/mus/bridge/mus_layout_manager_adapter.h
+++ b/ash/mus/bridge/mus_layout_manager_adapter.h
@@ -25,9 +25,9 @@ namespace mus {
// has no such hook. To ensure SetChildBounds() is called correctly all bounds
// changes to ui::Windows must be routed through WmWindowMus. WmWindowMus
// ensures WmLayoutManager::SetChildBounds() is called appropriately.
-class MusLayoutManagerAdapter : public ::ui::WindowObserver {
+class MusLayoutManagerAdapter : public ui::WindowObserver {
public:
- MusLayoutManagerAdapter(::ui::Window* window,
+ MusLayoutManagerAdapter(ui::Window* window,
std::unique_ptr<WmLayoutManager> layout_manager);
~MusLayoutManagerAdapter() override;
@@ -37,14 +37,14 @@ class MusLayoutManagerAdapter : public ::ui::WindowObserver {
// WindowObserver attached to child windows. A separate class is used to
// easily differentiate WindowObserver calls on the ui::Window associated
// with the MusLayoutManagerAdapter, vs children.
- class ChildWindowObserver : public ::ui::WindowObserver {
+ class ChildWindowObserver : public ui::WindowObserver {
public:
explicit ChildWindowObserver(MusLayoutManagerAdapter* adapter);
~ChildWindowObserver() override;
private:
// ui::WindowObserver:
- void OnWindowVisibilityChanged(::ui::Window* window) override;
+ void OnWindowVisibilityChanged(ui::Window* window) override;
MusLayoutManagerAdapter* adapter_;
@@ -54,11 +54,11 @@ class MusLayoutManagerAdapter : public ::ui::WindowObserver {
// ui::WindowObserver:
void OnTreeChanging(const TreeChangeParams& params) override;
void OnTreeChanged(const TreeChangeParams& params) override;
- void OnWindowBoundsChanged(::ui::Window* window,
+ void OnWindowBoundsChanged(ui::Window* window,
const gfx::Rect& old_bounds,
const gfx::Rect& new_bounds) override;
- ::ui::Window* window_;
+ ui::Window* window_;
ChildWindowObserver child_window_observer_;
std::unique_ptr<WmLayoutManager> layout_manager_;
« no previous file with comments | « ash/mus/app_launch_unittest.cc ('k') | ash/mus/bridge/mus_layout_manager_adapter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698