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

Unified Diff: ash/shell.h

Issue 1840913002: A11y setting: mono audio UI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 c71e0030c4a08dc3688da601c4432110d89ac8dc..8c49229dcefbf7d5bf1b88e4f044e778631401f4 100644
--- a/ash/shell.h
+++ b/ash/shell.h
@@ -46,6 +46,10 @@ namespace base {
class SequencedWorkerPool;
}
+namespace chromeos {
+class AudioA11yController;
+}
+
namespace gfx {
class ImageSkia;
class Point;
@@ -545,6 +549,10 @@ class ASH_EXPORT Shell : public SystemModalContainerEventFilterDelegate,
VirtualKeyboardController* virtual_keyboard_controller() {
return virtual_keyboard_controller_.get();
}
+
+ chromeos::AudioA11yController* audio_a11y_controller() {
+ return audio_a11y_controller_.get();
+ }
#endif // defined(OS_CHROMEOS)
ShelfModel* shelf_model() {
@@ -732,6 +740,7 @@ class ASH_EXPORT Shell : public SystemModalContainerEventFilterDelegate,
scoped_ptr<LastWindowClosedLogoutReminder>
last_window_closed_logout_reminder_;
scoped_ptr<VirtualKeyboardController> virtual_keyboard_controller_;
+ scoped_ptr<chromeos::AudioA11yController> audio_a11y_controller_;
// Controls video output device state.
scoped_ptr<ui::DisplayConfigurator> display_configurator_;
scoped_ptr<DisplayColorManager> display_color_manager_;

Powered by Google App Engine
This is Rietveld 408576698