| 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 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 std::unique_ptr<AccessibilityHighlightManager> | 411 std::unique_ptr<AccessibilityHighlightManager> |
| 412 accessibility_highlight_manager_; | 412 accessibility_highlight_manager_; |
| 413 | 413 |
| 414 std::unique_ptr<AccessibilityExtensionLoader> chromevox_loader_; | 414 std::unique_ptr<AccessibilityExtensionLoader> chromevox_loader_; |
| 415 | 415 |
| 416 std::unique_ptr<AccessibilityExtensionLoader> select_to_speak_loader_; | 416 std::unique_ptr<AccessibilityExtensionLoader> select_to_speak_loader_; |
| 417 | 417 |
| 418 std::unique_ptr<chromeos::SelectToSpeakEventHandler> | 418 std::unique_ptr<chromeos::SelectToSpeakEventHandler> |
| 419 select_to_speak_event_handler_; | 419 select_to_speak_event_handler_; |
| 420 | 420 |
| 421 std::unique_ptr<AccessibilityExtensionLoader> switch_access_loader_; |
| 422 |
| 421 base::WeakPtrFactory<AccessibilityManager> weak_ptr_factory_; | 423 base::WeakPtrFactory<AccessibilityManager> weak_ptr_factory_; |
| 422 | 424 |
| 423 DISALLOW_COPY_AND_ASSIGN(AccessibilityManager); | 425 DISALLOW_COPY_AND_ASSIGN(AccessibilityManager); |
| 424 }; | 426 }; |
| 425 | 427 |
| 426 } // namespace chromeos | 428 } // namespace chromeos |
| 427 | 429 |
| 428 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_ | 430 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_ |
| OLD | NEW |