| Index: chrome/browser/chromeos/dbus/display_power_service_provider.cc
|
| diff --git a/chrome/browser/chromeos/dbus/display_power_service_provider.cc b/chrome/browser/chromeos/dbus/display_power_service_provider.cc
|
| index 6f629f2d75a97f833f84984b360a24b6e745a140..6192952b7bbb7b2f9973daa0191da855009900df 100644
|
| --- a/chrome/browser/chromeos/dbus/display_power_service_provider.cc
|
| +++ b/chrome/browser/chromeos/dbus/display_power_service_provider.cc
|
| @@ -7,10 +7,10 @@
|
| #include "ash/shell.h"
|
| #include "ash/wm/user_activity_detector.h"
|
| #include "base/bind.h"
|
| -#include "chromeos/display/output_configurator.h"
|
| #include "dbus/bus.h"
|
| #include "dbus/message.h"
|
| #include "third_party/cros_system_api/dbus/service_constants.h"
|
| +#include "ui/display/chromeos/output_configurator.h"
|
|
|
| namespace chromeos {
|
|
|
| @@ -62,7 +62,7 @@ void DisplayPowerServiceProvider::SetDisplayPower(
|
|
|
| DisplayPowerState state = static_cast<DisplayPowerState>(int_state);
|
| ash::Shell::GetInstance()->output_configurator()->SetDisplayPower(
|
| - state, OutputConfigurator::kSetDisplayPowerNoFlags);
|
| + state, ui::OutputConfigurator::kSetDisplayPowerNoFlags);
|
| } else {
|
| LOG(ERROR) << "Unable to parse " << kSetDisplayPower << " request";
|
| }
|
|
|