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" |
11 #include "ash/session_state_observer.h" | 11 #include "ash/session_state_observer.h" |
12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
13 #include "base/prefs/pref_change_registrar.h" | 13 #include "base/prefs/pref_change_registrar.h" |
14 #include "base/time/time.h" | 14 #include "base/time/time.h" |
15 #include "chrome/browser/chromeos/accessibility/accessibility_util.h" | 15 #include "chrome/browser/chromeos/accessibility/accessibility_util.h" |
16 #include "chrome/browser/extensions/api/braille_display_private/braille_controll
er.h" | 16 #include "chrome/browser/extensions/api/braille_display_private/braille_controll
er.h" |
17 #include "chrome/browser/extensions/extension_system.h" | |
18 #include "content/public/browser/notification_observer.h" | 17 #include "content/public/browser/notification_observer.h" |
19 #include "content/public/browser/notification_registrar.h" | 18 #include "content/public/browser/notification_registrar.h" |
20 #include "extensions/browser/event_router.h" | 19 #include "extensions/browser/event_router.h" |
| 20 #include "extensions/browser/extension_system.h" |
21 | 21 |
22 class Profile; | 22 class Profile; |
23 | 23 |
24 namespace chromeos { | 24 namespace chromeos { |
25 | 25 |
26 struct AccessibilityStatusEventDetails { | 26 struct AccessibilityStatusEventDetails { |
27 AccessibilityStatusEventDetails( | 27 AccessibilityStatusEventDetails( |
28 bool enabled, | 28 bool enabled, |
29 ash::AccessibilityNotificationVisibility notify); | 29 ash::AccessibilityNotificationVisibility notify); |
30 | 30 |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 bool should_speak_chrome_vox_announcements_on_user_screen_; | 214 bool should_speak_chrome_vox_announcements_on_user_screen_; |
215 | 215 |
216 bool system_sounds_enabled_; | 216 bool system_sounds_enabled_; |
217 | 217 |
218 DISALLOW_COPY_AND_ASSIGN(AccessibilityManager); | 218 DISALLOW_COPY_AND_ASSIGN(AccessibilityManager); |
219 }; | 219 }; |
220 | 220 |
221 } // namespace chromeos | 221 } // namespace chromeos |
222 | 222 |
223 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_ | 223 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_ |
OLD | NEW |