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

Unified Diff: ash/mus/user_window_controller_impl.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/test/wm_test_helper.cc ('k') | ash/mus/user_window_controller_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mus/user_window_controller_impl.h
diff --git a/ash/mus/user_window_controller_impl.h b/ash/mus/user_window_controller_impl.h
index c3a17f951a7b2f0509187ae48c88b3b5dac1a530..4fb327c277c02758e4b3960ee8914b6c9e73c405 100644
--- a/ash/mus/user_window_controller_impl.h
+++ b/ash/mus/user_window_controller_impl.h
@@ -22,8 +22,8 @@ class RootWindowController;
class WindowPropertyObserver;
class UserWindowControllerImpl : public mojom::UserWindowController,
- public ::ui::WindowObserver,
- public ::ui::WindowTreeClientObserver {
+ public ui::WindowObserver,
+ public ui::WindowTreeClientObserver {
public:
UserWindowControllerImpl();
~UserWindowControllerImpl() override;
@@ -35,24 +35,24 @@ class UserWindowControllerImpl : public mojom::UserWindowController,
void Initialize(RootWindowController* root_controller);
private:
- void AssignIdIfNecessary(::ui::Window* window);
+ void AssignIdIfNecessary(ui::Window* window);
// Removes observers from the window and client.
- void RemoveObservers(::ui::Window* user_container);
+ void RemoveObservers(ui::Window* user_container);
// Returns the window with the specified user id.
- ::ui::Window* GetUserWindowById(uint32_t id);
+ ui::Window* GetUserWindowById(uint32_t id);
// A helper to get the container for user windows.
- ::ui::Window* GetUserWindowContainer() const;
+ ui::Window* GetUserWindowContainer() const;
// ui::WindowObserver:
void OnTreeChanging(const TreeChangeParams& params) override;
- void OnWindowDestroying(::ui::Window* window) override;
+ void OnWindowDestroying(ui::Window* window) override;
// ui::WindowTreeClientObserver:
- void OnWindowTreeFocusChanged(::ui::Window* gained_focus,
- ::ui::Window* lost_focus) override;
+ void OnWindowTreeFocusChanged(ui::Window* gained_focus,
+ ui::Window* lost_focus) override;
// mojom::UserWindowController:
void AddUserWindowObserver(mojom::UserWindowObserverPtr observer) override;
« no previous file with comments | « ash/mus/test/wm_test_helper.cc ('k') | ash/mus/user_window_controller_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698