| Index: ash/test/display_manager_test_api.cc
|
| diff --git a/ash/test/display_manager_test_api.cc b/ash/test/display_manager_test_api.cc
|
| index ebedcbec5cbec3ed70c47c9f58c98f470ff3793f..b43e61a2f31914f575c4b9f004f1334701e2283e 100644
|
| --- a/ash/test/display_manager_test_api.cc
|
| +++ b/ash/test/display_manager_test_api.cc
|
| @@ -46,8 +46,7 @@ std::vector<DisplayInfo> CreateDisplayInfoListFromString(
|
| iter != parts.end(); ++iter, ++index) {
|
| int64_t id = (index < list.size()) ? list[index].id()
|
| : display::Display::kInvalidDisplayID;
|
| - display_info_list.push_back(
|
| - DisplayInfo::CreateFromSpecWithID(*iter, id));
|
| + display_info_list.push_back(DisplayInfo::CreateFromSpecWithID(*iter, id));
|
| }
|
| return display_info_list;
|
| }
|
| @@ -69,8 +68,9 @@ bool DisplayManagerTestApi::TestIfMouseWarpsAt(
|
| screen->GetDisplayNearestPoint(point_in_screen);
|
| event_generator.MoveMouseTo(point_in_screen);
|
| return original_display.id() !=
|
| - screen->GetDisplayNearestPoint(
|
| - aura::Env::GetInstance()->last_mouse_location())
|
| + screen
|
| + ->GetDisplayNearestPoint(
|
| + aura::Env::GetInstance()->last_mouse_location())
|
| .id();
|
| }
|
|
|
|
|