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

Side by Side Diff: chrome/browser/chromeos/input_method/mock_input_method_manager.cc

Issue 178343005: [IME] migrate the xkb ID to extension based xkb ID. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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 | Annotate | Revision Log
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 #include "chrome/browser/chromeos/input_method/mock_input_method_manager.h" 5 #include "chrome/browser/chromeos/input_method/mock_input_method_manager.h"
6 6
7 namespace chromeos { 7 namespace chromeos {
8 namespace input_method { 8 namespace input_method {
9 9
10 MockInputMethodManager::MockInputMethodManager() 10 MockInputMethodManager::MockInputMethodManager()
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 } 158 }
159 159
160 void MockInputMethodManager::set_application_locale(const std::string& value) { 160 void MockInputMethodManager::set_application_locale(const std::string& value) {
161 delegate_.set_active_locale(value); 161 delegate_.set_active_locale(value);
162 } 162 }
163 163
164 bool MockInputMethodManager::IsLoginKeyboard( 164 bool MockInputMethodManager::IsLoginKeyboard(
165 const std::string& layout) const { 165 const std::string& layout) const {
166 return true; 166 return true;
167 } 167 }
168
169 bool MockInputMethodManager::MigrateXkbInputMethods(
170 std::vector<std::string>* input_method_ids) {
171 return false;
172 }
173
168 } // namespace input_method 174 } // namespace input_method
169 } // namespace chromeos 175 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698