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

Unified Diff: ash/wm/system_gesture_event_filter_unittest.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/wm/system_gesture_event_filter_unittest.cc
diff --git a/ash/wm/system_gesture_event_filter_unittest.cc b/ash/wm/system_gesture_event_filter_unittest.cc
index b0c3089884b1e6f079e5c3f2aacdf97a295fadc6..7754d3094c6117ac81ce00807a7979b99ef14c71 100644
--- a/ash/wm/system_gesture_event_filter_unittest.cc
+++ b/ash/wm/system_gesture_event_filter_unittest.cc
@@ -7,6 +7,7 @@
#include <vector>
#include "ash/accelerators/accelerator_controller.h"
+#include "ash/aura/wm_window_aura.h"
#include "ash/common/wm/window_positioning_utils.h"
#include "ash/common/wm/window_state.h"
#include "ash/display/display_manager.h"
@@ -18,7 +19,6 @@
#include "ash/test/display_manager_test_api.h"
#include "ash/test/shell_test_api.h"
#include "ash/test/test_shelf_delegate.h"
-#include "ash/wm/aura/wm_window_aura.h"
#include "ash/wm/window_state_aura.h"
#include "base/time/time.h"
#include "base/timer/timer.h"
@@ -418,7 +418,7 @@ TEST_F(SystemGestureEventFilterTest, DragLeftNearEdgeSnaps) {
kTouchPoints, points, 120, kSteps, drag_x, 0);
EXPECT_EQ(ash::wm::GetDefaultLeftSnappedWindowBoundsInParent(
- ash::wm::WmWindowAura::Get(toplevel_window))
+ ash::WmWindowAura::Get(toplevel_window))
.ToString(),
toplevel_window->bounds().ToString());
}
@@ -447,7 +447,7 @@ TEST_F(SystemGestureEventFilterTest, DragRightNearEdgeSnaps) {
generator.GestureMultiFingerScroll(
kTouchPoints, points, 120, kSteps, drag_x, 0);
EXPECT_EQ(wm::GetDefaultRightSnappedWindowBoundsInParent(
- wm::WmWindowAura::Get(toplevel_window))
+ WmWindowAura::Get(toplevel_window))
.ToString(),
toplevel_window->bounds().ToString());
}

Powered by Google App Engine
This is Rietveld 408576698