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

Unified Diff: ash/test/display_manager_test_api.cc

Issue 2286523002: Relocate reuseable portions of ash/display/display_util.* (Closed)
Patch Set: fixed ozone build Created 4 years, 4 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/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 5c1693608112da7054adc1835a614a20582c3436..a8ced5e6437f72d17d54ec09d04d15edefcd5cd4 100644
--- a/ash/test/display_manager_test_api.cc
+++ b/ash/test/display_manager_test_api.cc
@@ -9,7 +9,6 @@
#include "ash/common/ash_switches.h"
#include "ash/display/display_manager.h"
-#include "ash/display/display_util.h"
#include "ash/display/extended_mouse_warp_controller.h"
#include "ash/display/mouse_cursor_event_filter.h"
#include "ash/display/unified_mouse_warp_controller.h"
@@ -21,6 +20,7 @@
#include "ui/aura/window_event_dispatcher.h"
#include "ui/display/display.h"
#include "ui/display/manager/display_layout_builder.h"
+#include "ui/display/manager/display_manager_utilities.h"
#include "ui/display/manager/managed_display_info.h"
#include "ui/events/test/event_generator.h"
@@ -187,7 +187,7 @@ display::DisplayIdList CreateDisplayIdList2(int64_t id1, int64_t id2) {
display::DisplayIdList list;
list.push_back(id1);
list.push_back(id2);
- SortDisplayIdList(&list);
+ display::SortDisplayIdList(&list);
return list;
}
@@ -199,7 +199,7 @@ display::DisplayIdList CreateDisplayIdListN(size_t count, ...) {
int64_t id = va_arg(args, int64_t);
list.push_back(id);
}
- SortDisplayIdList(&list);
+ display::SortDisplayIdList(&list);
return list;
}
« no previous file with comments | « ash/display/unified_mouse_warp_controller_unittest.cc ('k') | chrome/browser/chromeos/display/display_preferences.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698