| 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/accessibility_delegate.h" | 10 #include "ash/accessibility_delegate.h" |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 bool large_cursor_enabled_; | 266 bool large_cursor_enabled_; |
| 267 bool sticky_keys_enabled_; | 267 bool sticky_keys_enabled_; |
| 268 bool spoken_feedback_enabled_; | 268 bool spoken_feedback_enabled_; |
| 269 bool high_contrast_enabled_; | 269 bool high_contrast_enabled_; |
| 270 bool autoclick_enabled_; | 270 bool autoclick_enabled_; |
| 271 int autoclick_delay_ms_; | 271 int autoclick_delay_ms_; |
| 272 bool virtual_keyboard_enabled_; | 272 bool virtual_keyboard_enabled_; |
| 273 | 273 |
| 274 ash::AccessibilityNotificationVisibility spoken_feedback_notification_; | 274 ash::AccessibilityNotificationVisibility spoken_feedback_notification_; |
| 275 | 275 |
| 276 base::WeakPtrFactory<AccessibilityManager> weak_ptr_factory_; | |
| 277 | |
| 278 bool should_speak_chrome_vox_announcements_on_user_screen_; | 276 bool should_speak_chrome_vox_announcements_on_user_screen_; |
| 279 | 277 |
| 280 bool system_sounds_enabled_; | 278 bool system_sounds_enabled_; |
| 281 | 279 |
| 282 AccessibilityStatusCallbackList callback_list_; | 280 AccessibilityStatusCallbackList callback_list_; |
| 283 | 281 |
| 284 bool braille_display_connected_; | 282 bool braille_display_connected_; |
| 285 ScopedObserver<extensions::api::braille_display_private::BrailleController, | 283 ScopedObserver<extensions::api::braille_display_private::BrailleController, |
| 286 AccessibilityManager> scoped_braille_observer_; | 284 AccessibilityManager> scoped_braille_observer_; |
| 287 | 285 |
| 288 bool braille_ime_current_; | 286 bool braille_ime_current_; |
| 289 | 287 |
| 288 base::WeakPtrFactory<AccessibilityManager> weak_ptr_factory_; |
| 289 |
| 290 DISALLOW_COPY_AND_ASSIGN(AccessibilityManager); | 290 DISALLOW_COPY_AND_ASSIGN(AccessibilityManager); |
| 291 }; | 291 }; |
| 292 | 292 |
| 293 } // namespace chromeos | 293 } // namespace chromeos |
| 294 | 294 |
| 295 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_ | 295 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_ |
| OLD | NEW |