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

Unified Diff: ash/mus/status_layout_manager.cc

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/status_layout_manager.h ('k') | ash/mus/test/wm_test_base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mus/status_layout_manager.cc
diff --git a/ash/mus/status_layout_manager.cc b/ash/mus/status_layout_manager.cc
index 0af74a6820b307ab9ffc005fb77bef2e809c4ef9..2eff89828b9356270d547a5b3dffe4fd524de065 100644
--- a/ash/mus/status_layout_manager.cc
+++ b/ash/mus/status_layout_manager.cc
@@ -12,11 +12,11 @@
namespace ash {
namespace mus {
-StatusLayoutManager::StatusLayoutManager(::ui::Window* owner)
+StatusLayoutManager::StatusLayoutManager(ui::Window* owner)
: LayoutManager(owner),
alignment_(mash::shelf::mojom::Alignment::BOTTOM),
auto_hide_behavior_(mash::shelf::mojom::AutoHideBehavior::NEVER) {
- AddLayoutProperty(::ui::mojom::WindowManager::kPreferredSize_Property);
+ AddLayoutProperty(ui::mojom::WindowManager::kPreferredSize_Property);
}
StatusLayoutManager::~StatusLayoutManager() {}
@@ -25,7 +25,7 @@ StatusLayoutManager::~StatusLayoutManager() {}
// layout as the number of children can vary when the application providing the
// status area restarts.
-void StatusLayoutManager::LayoutWindow(::ui::Window* window) {
+void StatusLayoutManager::LayoutWindow(ui::Window* window) {
if (GetAshWindowType(window) != mojom::AshWindowType::STATUS_AREA) {
// TODO(jamescook): Layout for notifications and other windows.
NOTIMPLEMENTED() << "Non-status-area window needs layout.";
@@ -52,7 +52,7 @@ void StatusLayoutManager::SetAlignment(
return;
alignment_ = alignment;
- for (::ui::Window* window : owner()->children())
+ for (ui::Window* window : owner()->children())
LayoutWindow(window);
}
« no previous file with comments | « ash/mus/status_layout_manager.h ('k') | ash/mus/test/wm_test_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698