| 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_;
|
|
|