| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 | 9 |
| 10 #include "ash/common/accessibility_types.h" | 10 #include "ash/common/accessibility_types.h" |
| (...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 } | 282 } |
| 283 bool keyboard_listener_capture() { return keyboard_listener_capture_; } | 283 bool keyboard_listener_capture() { return keyboard_listener_capture_; } |
| 284 | 284 |
| 285 protected: | 285 protected: |
| 286 AccessibilityManager(); | 286 AccessibilityManager(); |
| 287 ~AccessibilityManager() override; | 287 ~AccessibilityManager() override; |
| 288 | 288 |
| 289 private: | 289 private: |
| 290 void PostLoadChromeVox(); | 290 void PostLoadChromeVox(); |
| 291 void PostUnloadChromeVox(); | 291 void PostUnloadChromeVox(); |
| 292 void PostSwitchChromeVoxProfile(); |
| 292 | 293 |
| 293 void UpdateLargeCursorFromPref(); | 294 void UpdateLargeCursorFromPref(); |
| 294 void UpdateStickyKeysFromPref(); | 295 void UpdateStickyKeysFromPref(); |
| 295 void UpdateSpokenFeedbackFromPref(); | 296 void UpdateSpokenFeedbackFromPref(); |
| 296 void UpdateHighContrastFromPref(); | 297 void UpdateHighContrastFromPref(); |
| 297 void UpdateAutoclickFromPref(); | 298 void UpdateAutoclickFromPref(); |
| 298 void UpdateAutoclickDelayFromPref(); | 299 void UpdateAutoclickDelayFromPref(); |
| 299 void UpdateVirtualKeyboardFromPref(); | 300 void UpdateVirtualKeyboardFromPref(); |
| 300 void UpdateMonoAudioFromPref(); | 301 void UpdateMonoAudioFromPref(); |
| 301 void UpdateCaretHighlightFromPref(); | 302 void UpdateCaretHighlightFromPref(); |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 409 std::unique_ptr<AccessibilityExtensionLoader> select_to_speak_loader_; | 410 std::unique_ptr<AccessibilityExtensionLoader> select_to_speak_loader_; |
| 410 | 411 |
| 411 base::WeakPtrFactory<AccessibilityManager> weak_ptr_factory_; | 412 base::WeakPtrFactory<AccessibilityManager> weak_ptr_factory_; |
| 412 | 413 |
| 413 DISALLOW_COPY_AND_ASSIGN(AccessibilityManager); | 414 DISALLOW_COPY_AND_ASSIGN(AccessibilityManager); |
| 414 }; | 415 }; |
| 415 | 416 |
| 416 } // namespace chromeos | 417 } // namespace chromeos |
| 417 | 418 |
| 418 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_ | 419 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_ |
| OLD | NEW |