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

Unified Diff: ash/shell.h

Issue 1594683002: Introduce DisplayConfigurationController (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue_576375_display1b1
Patch Set: Rebase Created 4 years, 11 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/shell.h
diff --git a/ash/shell.h b/ash/shell.h
index 8401a6c3c433006bad17444d02e03a82388d4396..9776ec7768242ac4ec7ac3e38cebef301bc9313e 100644
--- a/ash/shell.h
+++ b/ash/shell.h
@@ -85,9 +85,9 @@ class AutoclickController;
class BluetoothNotificationController;
class CaptureController;
class DesktopBackgroundController;
-class DisplayAnimator;
class DisplayChangeObserver;
class DisplayColorManager;
+class DisplayConfigurationController;
class WindowTreeHostManager;
class DisplayErrorObserver;
class DisplayManager;
@@ -523,7 +523,9 @@ class ASH_EXPORT Shell : public SystemModalContainerEventFilterDelegate,
ui::DisplayConfigurator* display_configurator() {
return display_configurator_.get();
}
- DisplayAnimator* display_animator() { return display_animator_.get(); }
+ DisplayConfigurationController* display_configuration_controller() {
+ return display_configuration_controller_.get();
+ }
DisplayErrorObserver* display_error_observer() {
return display_error_observer_.get();
}
@@ -724,7 +726,7 @@ class ASH_EXPORT Shell : public SystemModalContainerEventFilterDelegate,
// Controls video output device state.
scoped_ptr<ui::DisplayConfigurator> display_configurator_;
scoped_ptr<DisplayColorManager> display_color_manager_;
- scoped_ptr<DisplayAnimator> display_animator_;
+ scoped_ptr<DisplayConfigurationController> display_configuration_controller_;
scoped_ptr<DisplayErrorObserver> display_error_observer_;
scoped_ptr<ProjectingObserver> projecting_observer_;

Powered by Google App Engine
This is Rietveld 408576698