| 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 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 399 // Listen to extension unloaded notifications. | 399 // Listen to extension unloaded notifications. |
| 400 ScopedObserver<extensions::ExtensionRegistry, | 400 ScopedObserver<extensions::ExtensionRegistry, |
| 401 extensions::ExtensionRegistryObserver> | 401 extensions::ExtensionRegistryObserver> |
| 402 extension_registry_observer_; | 402 extension_registry_observer_; |
| 403 | 403 |
| 404 std::unique_ptr<AccessibilityHighlightManager> | 404 std::unique_ptr<AccessibilityHighlightManager> |
| 405 accessibility_highlight_manager_; | 405 accessibility_highlight_manager_; |
| 406 | 406 |
| 407 std::unique_ptr<AccessibilityExtensionLoader> chromevox_loader_; | 407 std::unique_ptr<AccessibilityExtensionLoader> chromevox_loader_; |
| 408 | 408 |
| 409 std::unique_ptr<AccessibilityExtensionLoader> select_to_speak_loader_; |
| 410 |
| 409 base::WeakPtrFactory<AccessibilityManager> weak_ptr_factory_; | 411 base::WeakPtrFactory<AccessibilityManager> weak_ptr_factory_; |
| 410 | 412 |
| 411 DISALLOW_COPY_AND_ASSIGN(AccessibilityManager); | 413 DISALLOW_COPY_AND_ASSIGN(AccessibilityManager); |
| 412 }; | 414 }; |
| 413 | 415 |
| 414 } // namespace chromeos | 416 } // namespace chromeos |
| 415 | 417 |
| 416 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_ | 418 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_ |
| OLD | NEW |