| 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/session/session_state_observer.h" | 10 #include "ash/session/session_state_observer.h" |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 // extensions::api::braille_display_private::BrailleObserver implementation. | 233 // extensions::api::braille_display_private::BrailleObserver implementation. |
| 234 // Enables spoken feedback if a braille display becomes available. | 234 // Enables spoken feedback if a braille display becomes available. |
| 235 void OnBrailleDisplayStateChanged( | 235 void OnBrailleDisplayStateChanged( |
| 236 const extensions::api::braille_display_private::DisplayState& | 236 const extensions::api::braille_display_private::DisplayState& |
| 237 display_state) override; | 237 display_state) override; |
| 238 void OnBrailleKeyEvent( | 238 void OnBrailleKeyEvent( |
| 239 const extensions::api::braille_display_private::KeyEvent& event) override; | 239 const extensions::api::braille_display_private::KeyEvent& event) override; |
| 240 | 240 |
| 241 // InputMethodManager::Observer | 241 // InputMethodManager::Observer |
| 242 void InputMethodChanged(input_method::InputMethodManager* manager, | 242 void InputMethodChanged(input_method::InputMethodManager* manager, |
| 243 Profile* profile, |
| 243 bool show_message) override; | 244 bool show_message) override; |
| 244 | 245 |
| 245 // Profile which has the current a11y context. | 246 // Profile which has the current a11y context. |
| 246 Profile* profile_; | 247 Profile* profile_; |
| 247 | 248 |
| 248 // Profile which ChromeVox is currently loaded to. If NULL, ChromeVox is not | 249 // Profile which ChromeVox is currently loaded to. If NULL, ChromeVox is not |
| 249 // loaded to any profile. | 250 // loaded to any profile. |
| 250 bool chrome_vox_loaded_on_lock_screen_; | 251 bool chrome_vox_loaded_on_lock_screen_; |
| 251 bool chrome_vox_loaded_on_user_screen_; | 252 bool chrome_vox_loaded_on_user_screen_; |
| 252 | 253 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 bool braille_ime_current_; | 286 bool braille_ime_current_; |
| 286 | 287 |
| 287 base::WeakPtrFactory<AccessibilityManager> weak_ptr_factory_; | 288 base::WeakPtrFactory<AccessibilityManager> weak_ptr_factory_; |
| 288 | 289 |
| 289 DISALLOW_COPY_AND_ASSIGN(AccessibilityManager); | 290 DISALLOW_COPY_AND_ASSIGN(AccessibilityManager); |
| 290 }; | 291 }; |
| 291 | 292 |
| 292 } // namespace chromeos | 293 } // namespace chromeos |
| 293 | 294 |
| 294 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_ | 295 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_ |
| OLD | NEW |