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/session/session_state_observer.h" | 10 #include "ash/common/session/session_state_observer.h" |
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 PrefHandler cursor_highlight_pref_handler_; | 361 PrefHandler cursor_highlight_pref_handler_; |
362 PrefHandler focus_highlight_pref_handler_; | 362 PrefHandler focus_highlight_pref_handler_; |
363 PrefHandler select_to_speak_pref_handler_; | 363 PrefHandler select_to_speak_pref_handler_; |
364 PrefHandler switch_access_pref_handler_; | 364 PrefHandler switch_access_pref_handler_; |
365 | 365 |
366 bool large_cursor_enabled_; | 366 bool large_cursor_enabled_; |
367 bool sticky_keys_enabled_; | 367 bool sticky_keys_enabled_; |
368 bool spoken_feedback_enabled_; | 368 bool spoken_feedback_enabled_; |
369 bool high_contrast_enabled_; | 369 bool high_contrast_enabled_; |
370 bool autoclick_enabled_; | 370 bool autoclick_enabled_; |
371 int autoclick_delay_ms_; | 371 base::TimeDelta autoclick_delay_ms_; |
372 bool virtual_keyboard_enabled_; | 372 bool virtual_keyboard_enabled_; |
373 bool mono_audio_enabled_; | 373 bool mono_audio_enabled_; |
374 bool caret_highlight_enabled_; | 374 bool caret_highlight_enabled_; |
375 bool cursor_highlight_enabled_; | 375 bool cursor_highlight_enabled_; |
376 bool focus_highlight_enabled_; | 376 bool focus_highlight_enabled_; |
377 bool select_to_speak_enabled_; | 377 bool select_to_speak_enabled_; |
378 bool switch_access_enabled_; | 378 bool switch_access_enabled_; |
379 | 379 |
380 ui::AccessibilityNotificationVisibility spoken_feedback_notification_; | 380 ui::AccessibilityNotificationVisibility spoken_feedback_notification_; |
381 | 381 |
(...skipping 25 matching lines...) Expand all Loading... |
407 accessibility_highlight_manager_; | 407 accessibility_highlight_manager_; |
408 | 408 |
409 base::WeakPtrFactory<AccessibilityManager> weak_ptr_factory_; | 409 base::WeakPtrFactory<AccessibilityManager> weak_ptr_factory_; |
410 | 410 |
411 DISALLOW_COPY_AND_ASSIGN(AccessibilityManager); | 411 DISALLOW_COPY_AND_ASSIGN(AccessibilityManager); |
412 }; | 412 }; |
413 | 413 |
414 } // namespace chromeos | 414 } // namespace chromeos |
415 | 415 |
416 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_ | 416 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_ |
OLD | NEW |