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

Unified Diff: ash/mus/drag_window_resizer.h

Issue 2029883002: Moves mash/wm into ash/mus (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove_static_assert
Patch Set: move comment Created 4 years, 7 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/disconnected_app_handler.cc ('k') | ash/mus/drag_window_resizer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mus/drag_window_resizer.h
diff --git a/mash/wm/drag_window_resizer.h b/ash/mus/drag_window_resizer.h
similarity index 65%
rename from mash/wm/drag_window_resizer.h
rename to ash/mus/drag_window_resizer.h
index f662949df94431aa4c779d90054bf3a5fbbb3c9f..4d570871d151af07aa9d7bcc3bc7f22d7ec359f0 100644
--- a/mash/wm/drag_window_resizer.h
+++ b/ash/mus/drag_window_resizer.h
@@ -2,23 +2,23 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef MASH_WM_DRAG_WINDOW_RESIZER_H_
-#define MASH_WM_DRAG_WINDOW_RESIZER_H_
+#ifndef ASH_MUS_DRAG_WINDOW_RESIZER_H_
+#define ASH_MUS_DRAG_WINDOW_RESIZER_H_
#include <memory>
#include "ash/common/wm/window_resizer.h"
#include "base/macros.h"
-namespace mash {
-namespace wm {
+namespace ash {
+namespace mus {
// DragWindowResizer is a decorator of WindowResizer and adds the ability to
// drag windows across displays.
-class DragWindowResizer : public ash::WindowResizer {
+class DragWindowResizer : public WindowResizer {
public:
DragWindowResizer(std::unique_ptr<WindowResizer> next_window_resizer,
- ash::wm::WindowState* window_state);
+ wm::WindowState* window_state);
~DragWindowResizer() override;
// WindowResizer:
@@ -27,12 +27,12 @@ class DragWindowResizer : public ash::WindowResizer {
void RevertDrag() override;
private:
- std::unique_ptr<ash::WindowResizer> next_window_resizer_;
+ std::unique_ptr<WindowResizer> next_window_resizer_;
DISALLOW_COPY_AND_ASSIGN(DragWindowResizer);
};
-} // namespace wm
-} // namespace mash
+} // namespace mus
+} // namespace ash
-#endif // MASH_WM_DRAG_WINDOW_RESIZER_H_
+#endif // ASH_MUS_DRAG_WINDOW_RESIZER_H_
« no previous file with comments | « ash/mus/disconnected_app_handler.cc ('k') | ash/mus/drag_window_resizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698