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

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
« no previous file with comments | « ash/display/window_tree_host_manager_unittest.cc ('k') | ash/shell.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/shell.h
diff --git a/ash/shell.h b/ash/shell.h
index 8401a6c3c433006bad17444d02e03a82388d4396..819c80a61550ff8c2bba7347e299b0a04022abe8 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;
@@ -349,6 +349,9 @@ class ASH_EXPORT Shell : public SystemModalContainerEventFilterDelegate,
}
DisplayManager* display_manager() { return display_manager_.get(); }
+ DisplayConfigurationController* display_configuration_controller() {
+ return display_configuration_controller_.get();
+ }
::wm::CompoundEventFilter* env_filter() {
return env_filter_.get();
}
@@ -523,7 +526,6 @@ class ASH_EXPORT Shell : public SystemModalContainerEventFilterDelegate,
ui::DisplayConfigurator* display_configurator() {
return display_configurator_.get();
}
- DisplayAnimator* display_animator() { return display_animator_.get(); }
DisplayErrorObserver* display_error_observer() {
return display_error_observer_.get();
}
@@ -705,6 +707,7 @@ class ASH_EXPORT Shell : public SystemModalContainerEventFilterDelegate,
scoped_ptr< ::wm::AcceleratorFilter> accelerator_filter_;
scoped_ptr<DisplayManager> display_manager_;
+ scoped_ptr<DisplayConfigurationController> display_configuration_controller_;
scoped_ptr<LocaleNotificationController> locale_notification_controller_;
@@ -724,7 +727,6 @@ 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<DisplayErrorObserver> display_error_observer_;
scoped_ptr<ProjectingObserver> projecting_observer_;
« no previous file with comments | « ash/display/window_tree_host_manager_unittest.cc ('k') | ash/shell.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698