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

Unified Diff: ash/common/wm/window_resizer.cc

Issue 2035543004: Shuffles and renames ash/common/wm classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: random changes for chrome tests Created 4 years, 6 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
Index: ash/common/wm/window_resizer.cc
diff --git a/ash/common/wm/window_resizer.cc b/ash/common/wm/window_resizer.cc
index bba8f4126b0fdab04afd4ff293df30444e079367..bb96876efe65219ceced956d2443e08eeab36bba 100644
--- a/ash/common/wm/window_resizer.cc
+++ b/ash/common/wm/window_resizer.cc
@@ -8,7 +8,7 @@
#include "ash/common/wm/root_window_finder.h"
#include "ash/common/wm/window_positioning_utils.h"
#include "ash/common/wm/window_state.h"
-#include "ash/common/wm/wm_window.h"
+#include "ash/common/wm_window.h"
#include "ui/base/hit_test.h"
#include "ui/base/ui_base_types.h"
#include "ui/display/display.h"
@@ -185,7 +185,7 @@ gfx::Rect WindowResizer::CalculateBoundsForDrag(
// Make sure that |new_bounds| doesn't leave any of the displays. Note that
// the |work_area| above isn't good for this check since it is the work area
// for the current display but the window can move to a different one.
- wm::WmWindow* parent = GetTarget()->GetParent();
+ WmWindow* parent = GetTarget()->GetParent();
gfx::Point passed_location_in_screen(
parent->ConvertPointToScreen(passed_location));
gfx::Rect near_passed_location(passed_location_in_screen, gfx::Size());

Powered by Google App Engine
This is Rietveld 408576698