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

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

Issue 312453002: Migrates Japanese IME IDs and stop migrating Chinese IME IDs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased. Created 6 years, 6 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
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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 171
172 void MockInputMethodManager::set_application_locale(const std::string& value) { 172 void MockInputMethodManager::set_application_locale(const std::string& value) {
173 delegate_.set_active_locale(value); 173 delegate_.set_active_locale(value);
174 } 174 }
175 175
176 bool MockInputMethodManager::IsLoginKeyboard( 176 bool MockInputMethodManager::IsLoginKeyboard(
177 const std::string& layout) const { 177 const std::string& layout) const {
178 return true; 178 return true;
179 } 179 }
180 180
181 bool MockInputMethodManager::MigrateXkbInputMethods( 181 bool MockInputMethodManager::MigrateInputMethods(
182 std::vector<std::string>* input_method_ids) { 182 std::vector<std::string>* input_method_ids) {
183 return false; 183 return false;
184 } 184 }
185 185
186 } // namespace input_method 186 } // namespace input_method
187 } // namespace chromeos 187 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698