Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(299)

Side by Side Diff: chrome/browser/chromeos/accessibility/accessibility_manager.h

Issue 1055863002: ChromeOS: switch UI language before apps are loaded. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove empty line. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/chromeos/accessibility/accessibility_manager.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 // extensions::api::braille_display_private::BrailleObserver implementation. 233 // extensions::api::braille_display_private::BrailleObserver implementation.
234 // Enables spoken feedback if a braille display becomes available. 234 // Enables spoken feedback if a braille display becomes available.
235 void OnBrailleDisplayStateChanged( 235 void OnBrailleDisplayStateChanged(
236 const extensions::api::braille_display_private::DisplayState& 236 const extensions::api::braille_display_private::DisplayState&
237 display_state) override; 237 display_state) override;
238 void OnBrailleKeyEvent( 238 void OnBrailleKeyEvent(
239 const extensions::api::braille_display_private::KeyEvent& event) override; 239 const extensions::api::braille_display_private::KeyEvent& event) override;
240 240
241 // InputMethodManager::Observer 241 // InputMethodManager::Observer
242 void InputMethodChanged(input_method::InputMethodManager* manager, 242 void InputMethodChanged(input_method::InputMethodManager* manager,
243 Profile* profile,
243 bool show_message) override; 244 bool show_message) override;
244 245
245 // Profile which has the current a11y context. 246 // Profile which has the current a11y context.
246 Profile* profile_; 247 Profile* profile_;
247 248
248 // Profile which ChromeVox is currently loaded to. If NULL, ChromeVox is not 249 // Profile which ChromeVox is currently loaded to. If NULL, ChromeVox is not
249 // loaded to any profile. 250 // loaded to any profile.
250 bool chrome_vox_loaded_on_lock_screen_; 251 bool chrome_vox_loaded_on_lock_screen_;
251 bool chrome_vox_loaded_on_user_screen_; 252 bool chrome_vox_loaded_on_user_screen_;
252 253
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 bool braille_ime_current_; 286 bool braille_ime_current_;
286 287
287 base::WeakPtrFactory<AccessibilityManager> weak_ptr_factory_; 288 base::WeakPtrFactory<AccessibilityManager> weak_ptr_factory_;
288 289
289 DISALLOW_COPY_AND_ASSIGN(AccessibilityManager); 290 DISALLOW_COPY_AND_ASSIGN(AccessibilityManager);
290 }; 291 };
291 292
292 } // namespace chromeos 293 } // namespace chromeos
293 294
294 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_ 295 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_MANAGER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/accessibility/accessibility_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698