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

Unified Diff: ash/wm/toplevel_window_event_handler_unittest.cc

Issue 2095193002: clang-format all of //ash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « ash/wm/toplevel_window_event_handler.cc ('k') | ash/wm/video_detector.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/toplevel_window_event_handler_unittest.cc
diff --git a/ash/wm/toplevel_window_event_handler_unittest.cc b/ash/wm/toplevel_window_event_handler_unittest.cc
index c5764588ffded6ce7782626b3f15f85639bca66c..da0d3eb18587a5d6f83ad67e050e0443bbc358e6 100644
--- a/ash/wm/toplevel_window_event_handler_unittest.cc
+++ b/ash/wm/toplevel_window_event_handler_unittest.cc
@@ -92,7 +92,6 @@ class ToplevelWindowEventHandlerTest : public AshTestBase {
private:
DISALLOW_COPY_AND_ASSIGN(ToplevelWindowEventHandlerTest);
};
-
}
TEST_F(ToplevelWindowEventHandlerTest, Caption) {
@@ -441,8 +440,7 @@ TEST_F(ToplevelWindowEventHandlerTest, GestureDrag) {
// Snap right;
end.Offset(100, 0);
generator.GestureScrollSequence(location, end,
- base::TimeDelta::FromMilliseconds(5),
- 10);
+ base::TimeDelta::FromMilliseconds(5), 10);
RunAllPendingInMessageLoop();
// Verify that the window has moved after the gesture.
@@ -455,8 +453,7 @@ TEST_F(ToplevelWindowEventHandlerTest, GestureDrag) {
end = location = target->GetBoundsInRootWindow().CenterPoint();
end.Offset(-100, 0);
generator.GestureScrollSequence(location, end,
- base::TimeDelta::FromMilliseconds(5),
- 10);
+ base::TimeDelta::FromMilliseconds(5), 10);
RunAllPendingInMessageLoop();
EXPECT_NE(old_bounds.ToString(), target->bounds().ToString());
@@ -471,8 +468,7 @@ TEST_F(ToplevelWindowEventHandlerTest, GestureDrag) {
end = location = target->GetBoundsInRootWindow().CenterPoint();
end.Offset(0, -100);
generator.GestureScrollSequence(location, end,
- base::TimeDelta::FromMilliseconds(5),
- 10);
+ base::TimeDelta::FromMilliseconds(5), 10);
RunAllPendingInMessageLoop();
EXPECT_NE(old_bounds.ToString(), target->bounds().ToString());
@@ -487,8 +483,7 @@ TEST_F(ToplevelWindowEventHandlerTest, GestureDrag) {
end = location = target->GetBoundsInRootWindow().CenterPoint();
end.Offset(0, 100);
generator.GestureScrollSequence(location, end,
- base::TimeDelta::FromMilliseconds(5),
- 10);
+ base::TimeDelta::FromMilliseconds(5), 10);
RunAllPendingInMessageLoop();
EXPECT_NE(old_bounds.ToString(), target->bounds().ToString());
EXPECT_TRUE(window_state->IsMinimized());
@@ -510,8 +505,7 @@ TEST_F(ToplevelWindowEventHandlerTest,
gfx::Point end = location;
end.Offset(0, 100);
generator.GestureScrollSequence(location, end,
- base::TimeDelta::FromMilliseconds(5),
- 10);
+ base::TimeDelta::FromMilliseconds(5), 10);
RunAllPendingInMessageLoop();
EXPECT_FALSE(wm::GetWindowState(target.get())->IsMinimized());
}
@@ -530,8 +524,7 @@ TEST_F(ToplevelWindowEventHandlerTest, GestureDragToRestore) {
end = location = window->GetBoundsInRootWindow().CenterPoint();
end.Offset(0, 100);
generator.GestureScrollSequence(location, end,
- base::TimeDelta::FromMilliseconds(5),
- 10);
+ base::TimeDelta::FromMilliseconds(5), 10);
RunAllPendingInMessageLoop();
EXPECT_NE(old_bounds.ToString(), window->bounds().ToString());
EXPECT_TRUE(window_state->IsMinimized());
@@ -557,8 +550,7 @@ TEST_F(ToplevelWindowEventHandlerTest, GestureDragForUnresizableWindow) {
// Try to snap right. The window is not resizable. So it should not snap.
end.Offset(100, 0);
generator.GestureScrollSequence(location, end,
- base::TimeDelta::FromMilliseconds(5),
- 10);
+ base::TimeDelta::FromMilliseconds(5), 10);
RunAllPendingInMessageLoop();
// Verify that the window has moved after the gesture.
@@ -575,8 +567,7 @@ TEST_F(ToplevelWindowEventHandlerTest, GestureDragForUnresizableWindow) {
end = location = target->GetBoundsInRootWindow().CenterPoint();
end.Offset(-100, 0);
generator.GestureScrollSequence(location, end,
- base::TimeDelta::FromMilliseconds(5),
- 10);
+ base::TimeDelta::FromMilliseconds(5), 10);
RunAllPendingInMessageLoop();
// Verify that the window has moved after the gesture.
@@ -612,9 +603,8 @@ TEST_F(ToplevelWindowEventHandlerTest, GestureDragMultipleWindows) {
ui::test::EventGenerator gen(Shell::GetPrimaryRootWindow(), notmoved.get());
gfx::Point start = notmoved->bounds().origin() + gfx::Vector2d(10, 10);
gfx::Point end = start + gfx::Vector2d(100, 10);
- gen.GestureScrollSequence(start, end,
- base::TimeDelta::FromMilliseconds(10),
- 10);
+ gen.GestureScrollSequence(start, end, base::TimeDelta::FromMilliseconds(10),
+ 10);
EXPECT_EQ(bounds.ToString(), notmoved->bounds().ToString());
}
}
@@ -710,7 +700,7 @@ TEST_F(ToplevelWindowEventHandlerTest, RunMoveLoopFailsDuringInProgressDrag) {
aura::client::GetWindowMoveClient(window2->GetRootWindow());
EXPECT_EQ(aura::client::MOVE_CANCELED,
move_client->RunMoveLoop(window2.get(), gfx::Vector2d(),
- aura::client::WINDOW_MOVE_SOURCE_MOUSE));
+ aura::client::WINDOW_MOVE_SOURCE_MOUSE));
generator.ReleaseLeftButton();
EXPECT_EQ("10,11 100x100", window1->bounds().ToString());
@@ -743,7 +733,7 @@ TEST_F(ToplevelWindowEventHandlerTest, CaptureLossAfterMouseRelease) {
base::Unretained(&generator), base::Unretained(window.get())));
EXPECT_EQ(aura::client::MOVE_SUCCESSFUL,
move_client->RunMoveLoop(window.get(), gfx::Vector2d(),
- aura::client::WINDOW_MOVE_SOURCE_MOUSE));
+ aura::client::WINDOW_MOVE_SOURCE_MOUSE));
}
namespace {
« no previous file with comments | « ash/wm/toplevel_window_event_handler.cc ('k') | ash/wm/video_detector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698