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

Unified Diff: chrome/browser/chromeos/display/display_preferences.cc

Issue 226183004: Renamed OutputConfigurator to DisplayConfigurator (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 6 years, 8 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: chrome/browser/chromeos/display/display_preferences.cc
diff --git a/chrome/browser/chromeos/display/display_preferences.cc b/chrome/browser/chromeos/display/display_preferences.cc
index 30eac29cb58827c12de4d156c57f7b509d35116a..25a2356da281844bc83f32edb45890943f17cc67 100644
--- a/chrome/browser/chromeos/display/display_preferences.cc
+++ b/chrome/browser/chromeos/display/display_preferences.cc
@@ -283,7 +283,7 @@ void StoreDisplayPowerState(DisplayPowerState power_state) {
void StoreCurrentDisplayPowerState() {
StoreDisplayPowerState(
- ash::Shell::GetInstance()->output_configurator()->power_state());
+ ash::Shell::GetInstance()->display_configurator()->power_state());
}
} // namespace
@@ -326,7 +326,7 @@ void LoadDisplayPreferences(bool first_run_after_boot) {
std::string value = local_state->GetString(prefs::kDisplayPowerState);
chromeos::DisplayPowerState power_state;
if (GetDisplayPowerStateFromString(value, &power_state)) {
- ash::Shell::GetInstance()->output_configurator()->SetInitialDisplayPower(
+ ash::Shell::GetInstance()->display_configurator()->SetInitialDisplayPower(
power_state);
}
}

Powered by Google App Engine
This is Rietveld 408576698