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

Side by Side Diff: chrome/browser/chromeos/input_method/input_method_manager_impl.h

Issue 23608003: Default keyboard layout should be set considering owners preference. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 3 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/input_method/input_method_manager_impl.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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_
6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 const std::string& id, 79 const std::string& id,
80 const std::string& name, 80 const std::string& name,
81 const std::vector<std::string>& layouts, 81 const std::vector<std::string>& layouts,
82 const std::vector<std::string>& languages, 82 const std::vector<std::string>& languages,
83 const GURL& options_page, 83 const GURL& options_page,
84 InputMethodEngine* instance) OVERRIDE; 84 InputMethodEngine* instance) OVERRIDE;
85 virtual void RemoveInputMethodExtension(const std::string& id) OVERRIDE; 85 virtual void RemoveInputMethodExtension(const std::string& id) OVERRIDE;
86 virtual void GetInputMethodExtensions( 86 virtual void GetInputMethodExtensions(
87 InputMethodDescriptors* result) OVERRIDE; 87 InputMethodDescriptors* result) OVERRIDE;
88 virtual void SetEnabledExtensionImes(std::vector<std::string>* ids) OVERRIDE; 88 virtual void SetEnabledExtensionImes(std::vector<std::string>* ids) OVERRIDE;
89 virtual void SetInputMethodDefault() OVERRIDE;
89 virtual bool SwitchToNextInputMethod() OVERRIDE; 90 virtual bool SwitchToNextInputMethod() OVERRIDE;
90 virtual bool SwitchToPreviousInputMethod( 91 virtual bool SwitchToPreviousInputMethod(
91 const ui::Accelerator& accelerator) OVERRIDE; 92 const ui::Accelerator& accelerator) OVERRIDE;
92 virtual bool SwitchInputMethod(const ui::Accelerator& accelerator) OVERRIDE; 93 virtual bool SwitchInputMethod(const ui::Accelerator& accelerator) OVERRIDE;
93 virtual InputMethodDescriptor GetCurrentInputMethod() const OVERRIDE; 94 virtual InputMethodDescriptor GetCurrentInputMethod() const OVERRIDE;
94 virtual InputMethodPropertyList 95 virtual InputMethodPropertyList
95 GetCurrentInputMethodProperties() const OVERRIDE; 96 GetCurrentInputMethodProperties() const OVERRIDE;
96 virtual XKeyboard* GetXKeyboard() OVERRIDE; 97 virtual XKeyboard* GetXKeyboard() OVERRIDE;
97 virtual InputMethodUtil* GetInputMethodUtil() OVERRIDE; 98 virtual InputMethodUtil* GetInputMethodUtil() OVERRIDE;
98 virtual ComponentExtensionIMEManager* 99 virtual ComponentExtensionIMEManager*
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 // login screen) 240 // login screen)
240 FullLatinKeyboardLayoutChecker full_latin_keyboard_checker; 241 FullLatinKeyboardLayoutChecker full_latin_keyboard_checker;
241 242
242 DISALLOW_COPY_AND_ASSIGN(InputMethodManagerImpl); 243 DISALLOW_COPY_AND_ASSIGN(InputMethodManagerImpl);
243 }; 244 };
244 245
245 } // namespace input_method 246 } // namespace input_method
246 } // namespace chromeos 247 } // namespace chromeos
247 248
248 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ 249 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/input_method/input_method_manager_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698