Index: ash/mus/fill_layout.cc |
diff --git a/mash/wm/fill_layout.cc b/ash/mus/fill_layout.cc |
similarity index 57% |
rename from mash/wm/fill_layout.cc |
rename to ash/mus/fill_layout.cc |
index 6769d260d2c3b9e8d3c20a611c6505689bb44863..01107d6265c82493251b86dfc8289bfb1c096329 100644 |
--- a/mash/wm/fill_layout.cc |
+++ b/ash/mus/fill_layout.cc |
@@ -2,20 +2,20 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "mash/wm/fill_layout.h" |
+#include "ash/mus/fill_layout.h" |
#include "components/mus/public/cpp/window.h" |
-namespace mash { |
-namespace wm { |
+namespace ash { |
+namespace mus { |
-FillLayout::FillLayout(mus::Window* owner) : LayoutManager(owner) {} |
+FillLayout::FillLayout(::mus::Window* owner) : LayoutManager(owner) {} |
FillLayout::~FillLayout() {} |
-void FillLayout::LayoutWindow(mus::Window* window) { |
+void FillLayout::LayoutWindow(::mus::Window* window) { |
window->SetBounds(gfx::Rect(owner()->bounds().size())); |
} |
-} // namespace wm |
-} // namespace mash |
+} // namespace mus |
+} // namespace ash |