Index: chrome/browser/chromeos/extensions/input_method_apitest_chromeos.cc |
diff --git a/chrome/browser/chromeos/extensions/input_method_apitest_chromeos.cc b/chrome/browser/chromeos/extensions/input_method_apitest_chromeos.cc |
index ac7c9c77f53bc654cf1bd8987d7da35874957cb5..dee43848db121b526f8c99b956cc49c36de9fb48 100644 |
--- a/chrome/browser/chromeos/extensions/input_method_apitest_chromeos.cc |
+++ b/chrome/browser/chromeos/extensions/input_method_apitest_chromeos.cc |
@@ -33,8 +33,10 @@ class SetInputMethodListener : public content::NotificationObserver { |
explicit SetInputMethodListener(int count) : count_(count) { |
registrar_.Add(this, chrome::NOTIFICATION_EXTENSION_TEST_MESSAGE, |
content::NotificationService::AllSources()); |
+ std::vector<std::string> keyboard_layouts; |
Alexander Alekseev
2014/02/11 13:36:02
#include <vector>
Seigo Nonaka
2014/02/12 13:21:02
Done.
|
+ keyboard_layouts.push_back(kInitialInputMethodOnLoginScreen); |
chromeos::input_method::InputMethodManager::Get()->EnableLoginLayouts( |
- kLoginScreenUILanguage, kInitialInputMethodOnLoginScreen); |
+ kLoginScreenUILanguage, keyboard_layouts); |
} |
virtual ~SetInputMethodListener() { |