| Index: chrome/browser/ui/ash/system_tray_delegate_chromeos.h
|
| diff --git a/chrome/browser/ui/ash/system_tray_delegate_chromeos.h b/chrome/browser/ui/ash/system_tray_delegate_chromeos.h
|
| index b56ef285b1d92ce0b28005261d1879501f67551e..cd92e61a830931dadd148810784799c9e575c866 100644
|
| --- a/chrome/browser/ui/ash/system_tray_delegate_chromeos.h
|
| +++ b/chrome/browser/ui/ash/system_tray_delegate_chromeos.h
|
| @@ -14,6 +14,7 @@
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "base/prefs/pref_change_registrar.h"
|
| +#include "chrome/browser/chromeos/accessibility/accessibility_manager.h"
|
| #include "chrome/browser/chromeos/drive/drive_integration_service.h"
|
| #include "chrome/browser/chromeos/drive/job_list.h"
|
| #include "chrome/browser/chromeos/events/system_key_event_listener.h"
|
| @@ -218,6 +219,9 @@ class SystemTrayDelegateChromeOS
|
| // Overridden from ash::SessionStateObserver
|
| virtual void UserAddedToSession(const std::string& user_id) OVERRIDE;
|
|
|
| + void OnAccessibilityStatusChanged(
|
| + const AccessibilityStatusEventDetails& details);
|
| +
|
| base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_;
|
| scoped_ptr<content::NotificationRegistrar> registrar_;
|
| scoped_ptr<PrefChangeRegistrar> local_state_registrar_;
|
| @@ -235,6 +239,7 @@ class SystemTrayDelegateChromeOS
|
| scoped_refptr<device::BluetoothAdapter> bluetooth_adapter_;
|
| scoped_ptr<ash::VolumeControlDelegate> volume_control_delegate_;
|
| scoped_ptr<CrosSettingsObserverSubscription> device_settings_observer_;
|
| + scoped_ptr<AccessibilityStatusSubscription> accessibility_subscription_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS);
|
| };
|
|
|