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

Unified Diff: ash/wm/lock_state_controller_unittest.cc

Issue 192483007: Move chromeos/display/* to ui/display/chromeos (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Include display.gyp into ChromeOS builds only Created 6 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/touch/touch_observer_hud.cc ('k') | ash/wm/power_button_controller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/lock_state_controller_unittest.cc
diff --git a/ash/wm/lock_state_controller_unittest.cc b/ash/wm/lock_state_controller_unittest.cc
index b4267389399d82fc6392937abcb1385beb3694bf..bfbfeef6e2bb4652fc442f8516c638b5d745a159 100644
--- a/ash/wm/lock_state_controller_unittest.cc
+++ b/ash/wm/lock_state_controller_unittest.cc
@@ -26,7 +26,7 @@
#include "ui/gfx/size.h"
#if defined(OS_CHROMEOS) && defined(USE_X11)
-#include "chromeos/display/output_configurator.h"
+#include "ui/display/chromeos/output_configurator.h"
#include "ui/display/display_constants.h"
#endif
@@ -999,11 +999,11 @@ TEST_F(LockStateControllerTest, IgnorePowerButtonIfScreenIsOff) {
#if defined(OS_CHROMEOS) && defined(USE_X11)
TEST_F(LockStateControllerTest, HonorPowerButtonInDockedMode) {
// Create two outputs, the first internal and the second external.
- std::vector<chromeos::OutputConfigurator::OutputSnapshot> outputs;
- chromeos::OutputConfigurator::OutputSnapshot internal_output;
+ std::vector<ui::OutputConfigurator::OutputSnapshot> outputs;
+ ui::OutputConfigurator::OutputSnapshot internal_output;
internal_output.type = ui::OUTPUT_TYPE_INTERNAL;
outputs.push_back(internal_output);
- chromeos::OutputConfigurator::OutputSnapshot external_output;
+ ui::OutputConfigurator::OutputSnapshot external_output;
external_output.type = ui::OUTPUT_TYPE_HDMI;
outputs.push_back(external_output);
« no previous file with comments | « ash/touch/touch_observer_hud.cc ('k') | ash/wm/power_button_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698