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

Unified Diff: ash/shell.h

Issue 10201014: Implement High Contrast mode for Chrome OS (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Code review fix Created 8 years, 7 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 c2fb5a9f04f16c4077e47751b19f906830fb2ed9..5ec81b7dd6b760b77acda0102af17b773055fa14 100644
--- a/ash/shell.h
+++ b/ash/shell.h
@@ -72,6 +72,7 @@ class AppListController;
class DragDropController;
class EventClientImpl;
class FocusCycler;
+class HighContrastController;
class KeyRewriterEventFilter;
class MagnificationController;
class MonitorController;
@@ -236,9 +237,14 @@ class ASH_EXPORT Shell {
return user_wallpaper_delegate_.get();
}
+ internal::HighContrastController* high_contrast_controller() {
+ return high_contrast_controller_.get();
+ }
+
internal::MagnificationController* magnification_controller() {
return magnification_controller_.get();
}
+
internal::ScreenDimmer* screen_dimmer() {
return screen_dimmer_.get();
}
@@ -347,6 +353,7 @@ class ASH_EXPORT Shell {
scoped_ptr<internal::FocusCycler> focus_cycler_;
scoped_ptr<internal::EventClientImpl> event_client_;
scoped_ptr<internal::MonitorController> monitor_controller_;
+ scoped_ptr<internal::HighContrastController> high_contrast_controller_;
scoped_ptr<internal::MagnificationController> magnification_controller_;
scoped_ptr<internal::ScreenDimmer> screen_dimmer_;

Powered by Google App Engine
This is Rietveld 408576698