| 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_types.h" | 10 #include "ash/accessibility_types.h" |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 | 354 |
| 355 // extensions::api::braille_display_private::BrailleObserver implementation. | 355 // extensions::api::braille_display_private::BrailleObserver implementation. |
| 356 // Enables spoken feedback if a braille display becomes available. | 356 // Enables spoken feedback if a braille display becomes available. |
| 357 void OnBrailleDisplayStateChanged( | 357 void OnBrailleDisplayStateChanged( |
| 358 const extensions::api::braille_display_private::DisplayState& | 358 const extensions::api::braille_display_private::DisplayState& |
| 359 display_state) override; | 359 display_state) override; |
| 360 void OnBrailleKeyEvent( | 360 void OnBrailleKeyEvent( |
| 361 const extensions::api::braille_display_private::KeyEvent& event) override; | 361 const extensions::api::braille_display_private::KeyEvent& event) override; |
| 362 | 362 |
| 363 // ExtensionRegistryObserver implementation. | 363 // ExtensionRegistryObserver implementation. |
| 364 void OnExtensionUnloaded( | 364 void OnExtensionUnloaded(content::BrowserContext* browser_context, |
| 365 content::BrowserContext* browser_context, | 365 const extensions::Extension* extension, |
| 366 const extensions::Extension* extension, | 366 extensions::UnloadedExtensionReason reason) override; |
| 367 extensions::UnloadedExtensionInfo::Reason reason) override; | |
| 368 void OnShutdown(extensions::ExtensionRegistry* registry) override; | 367 void OnShutdown(extensions::ExtensionRegistry* registry) override; |
| 369 | 368 |
| 370 // InputMethodManager::Observer | 369 // InputMethodManager::Observer |
| 371 void InputMethodChanged(input_method::InputMethodManager* manager, | 370 void InputMethodChanged(input_method::InputMethodManager* manager, |
| 372 Profile* profile, | 371 Profile* profile, |
| 373 bool show_message) override; | 372 bool show_message) override; |
| 374 | 373 |
| 375 // session_manager::SessionManagerObserver | 374 // session_manager::SessionManagerObserver |
| 376 void OnSessionStateChanged() override; | 375 void OnSessionStateChanged() override; |
| 377 | 376 |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 455 switch_access_event_handler_; | 454 switch_access_event_handler_; |
| 456 | 455 |
| 457 base::WeakPtrFactory<AccessibilityManager> weak_ptr_factory_; | 456 base::WeakPtrFactory<AccessibilityManager> weak_ptr_factory_; |
| 458 | 457 |
| 459 DISALLOW_COPY_AND_ASSIGN(AccessibilityManager); | 458 DISALLOW_COPY_AND_ASSIGN(AccessibilityManager); |
| 460 }; | 459 }; |
| 461 | 460 |
| 462 } // namespace chromeos | 461 } // namespace chromeos |
| 463 | 462 |
| 464 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_ | 463 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_ |
| OLD | NEW |