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

Unified Diff: ash/mus/layout_manager.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/frame/non_client_frame_view_mash.cc ('k') | ash/mus/layout_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mus/layout_manager.h
diff --git a/ash/mus/layout_manager.h b/ash/mus/layout_manager.h
index 67be8c243d3ba7eb427a325239d3dfdd03585b1f..daf99fe10364e681b727d04ccb2b049e722c9c5b 100644
--- a/ash/mus/layout_manager.h
+++ b/ash/mus/layout_manager.h
@@ -19,39 +19,39 @@ namespace mus {
// LayoutManagers observe both the bound container and all its children.
// They must be attached prior to any windows being added to the
// container.
-class LayoutManager : public ::ui::WindowObserver {
+class LayoutManager : public ui::WindowObserver {
public:
~LayoutManager() override;
protected:
- explicit LayoutManager(::ui::Window* owner);
+ explicit LayoutManager(ui::Window* owner);
void Uninstall();
// Overridden from ui::WindowObserver:
void OnTreeChanged(
- const ::ui::WindowObserver::TreeChangeParams& params) override;
- void OnWindowDestroying(::ui::Window* window) override;
- void OnWindowBoundsChanged(::ui::Window* window,
+ const ui::WindowObserver::TreeChangeParams& params) override;
+ void OnWindowDestroying(ui::Window* window) override;
+ void OnWindowBoundsChanged(ui::Window* window,
const gfx::Rect& old_bounds,
const gfx::Rect& new_bounds) override;
void OnWindowSharedPropertyChanged(
- ::ui::Window* window,
+ ui::Window* window,
const std::string& name,
const std::vector<uint8_t>* old_data,
const std::vector<uint8_t>* new_data) override;
- virtual void WindowAdded(::ui::Window* window);
- virtual void WindowRemoved(::ui::Window* window);
- virtual void LayoutWindow(::ui::Window* window) = 0;
+ virtual void WindowAdded(ui::Window* window);
+ virtual void WindowRemoved(ui::Window* window);
+ virtual void LayoutWindow(ui::Window* window) = 0;
// Add a property that triggers layout when changed.
void AddLayoutProperty(const std::string& property);
- ::ui::Window* owner() { return owner_; }
+ ui::Window* owner() { return owner_; }
private:
- ::ui::Window* owner_;
+ ui::Window* owner_;
std::set<std::string> layout_properties_;
« no previous file with comments | « ash/mus/frame/non_client_frame_view_mash.cc ('k') | ash/mus/layout_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698