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/session/session_state_observer.h" | 10 #include "ash/session/session_state_observer.h" |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 // Returns true if a braille display is connected to the system, otherwise | 206 // Returns true if a braille display is connected to the system, otherwise |
207 // false. | 207 // false. |
208 bool IsBrailleDisplayConnected() const; | 208 bool IsBrailleDisplayConnected() const; |
209 | 209 |
210 // SessionStateObserver overrides: | 210 // SessionStateObserver overrides: |
211 void ActiveUserChanged(const AccountId& account_id) override; | 211 void ActiveUserChanged(const AccountId& account_id) override; |
212 | 212 |
213 // ShellObserver overrides: | 213 // ShellObserver overrides: |
214 void OnAppTerminating() override; | 214 void OnAppTerminating() override; |
215 void OnFullscreenStateChanged(bool is_fullscreen, | 215 void OnFullscreenStateChanged(bool is_fullscreen, |
216 aura::Window* root_window) override; | 216 ash::WmWindow* root_window) override; |
217 | 217 |
218 void SetProfileForTest(Profile* profile); | 218 void SetProfileForTest(Profile* profile); |
219 | 219 |
220 static void SetBrailleControllerForTest( | 220 static void SetBrailleControllerForTest( |
221 extensions::api::braille_display_private::BrailleController* controller); | 221 extensions::api::braille_display_private::BrailleController* controller); |
222 | 222 |
223 // Enables/disables system sounds. | 223 // Enables/disables system sounds. |
224 void EnableSystemSounds(bool system_sounds_enabled); | 224 void EnableSystemSounds(bool system_sounds_enabled); |
225 | 225 |
226 // Initiates play of shutdown sound and returns it's duration. | 226 // Initiates play of shutdown sound and returns it's duration. |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after 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 |