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

Unified Diff: ash/display/mouse_cursor_event_filter_unittest.cc

Issue 1819533002: Convert ScopedVector<DisplayPlacement> to std::vector<DisplayPlacement> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@jsonrefactor
Patch Set: Created 4 years, 9 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/display/json_converter_unittest.cc ('k') | ash/display/screen_position_controller_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/display/mouse_cursor_event_filter_unittest.cc
diff --git a/ash/display/mouse_cursor_event_filter_unittest.cc b/ash/display/mouse_cursor_event_filter_unittest.cc
index fb0e586a7cb3b6f29fed879d8d39c9f81b5ee2c5..0842c6945c28785effa499d4bb2ba2bc1a0aa0ae 100644
--- a/ash/display/mouse_cursor_event_filter_unittest.cc
+++ b/ash/display/mouse_cursor_event_filter_unittest.cc
@@ -46,7 +46,7 @@ TEST_F(MouseCursorEventFilterTest, WarpMouse) {
->display_manager()
->GetCurrentDisplayLayout()
.placement_list[0]
- ->position);
+ .position);
EXPECT_FALSE(TestIfMouseWarpsAt(gfx::Point(11, 11)));
@@ -86,7 +86,7 @@ TEST_F(MouseCursorEventFilterTest, WarpMouseDifferentSizeDisplays) {
->display_manager()
->GetCurrentDisplayLayout()
.placement_list[0]
- ->position);
+ .position);
// Touch the left edge of the secondary root window. Pointer should NOT warp
// because 1px left of (0, 500) is outside the primary root window.
@@ -114,7 +114,7 @@ TEST_F(MouseCursorEventFilterTest, WarpMouseDifferentScaleDisplaysInNative) {
->display_manager()
->GetCurrentDisplayLayout()
.placement_list[0]
- ->position);
+ .position);
aura::Env::GetInstance()->set_last_mouse_location(gfx::Point(900, 123));
« no previous file with comments | « ash/display/json_converter_unittest.cc ('k') | ash/display/screen_position_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698