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

Unified Diff: chrome/browser/chromeos/input_method/mock_input_method_manager.cc

Issue 139803010: Support comma separated hardware keyboard layout. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix wrong condition. Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/input_method/mock_input_method_manager.cc
diff --git a/chrome/browser/chromeos/input_method/mock_input_method_manager.cc b/chrome/browser/chromeos/input_method/mock_input_method_manager.cc
index 43a3dc82b15bc4becc4fd5944eacebd279490fde..9f7488d6fb3ec8cf983d53242e09b88666c79e50 100644
--- a/chrome/browser/chromeos/input_method/mock_input_method_manager.cc
+++ b/chrome/browser/chromeos/input_method/mock_input_method_manager.cc
@@ -74,7 +74,7 @@ const InputMethodDescriptor* MockInputMethodManager::GetInputMethodFromId(
void MockInputMethodManager::EnableLoginLayouts(
const std::string& language_code,
- const std::string& initial_layout) {
+ const std::vector<std::string>& initial_layout) {
}
bool MockInputMethodManager::EnableInputMethods(
@@ -111,7 +111,7 @@ void MockInputMethodManager::SetEnabledExtensionImes(
std::vector<std::string>* ids) {
}
-void MockInputMethodManager::SetInputMethodDefault() {
+void MockInputMethodManager::SetInputMethodLoginDefault() {
}
bool MockInputMethodManager::SwitchToNextInputMethod() {
@@ -169,11 +169,6 @@ void MockInputMethodManager::set_application_locale(const std::string& value) {
delegate_.set_active_locale(value);
}
-void MockInputMethodManager::set_hardware_keyboard_layout(
- const std::string& value) {
- delegate_.set_hardware_keyboard_layout(value);
-}
-
bool MockInputMethodManager::IsLoginKeyboard(
const std::string& layout) const {
return true;

Powered by Google App Engine
This is Rietveld 408576698