| Index: chrome/browser/chromeos/input_method/input_method_manager_impl_unittest.cc
|
| diff --git a/chrome/browser/chromeos/input_method/input_method_manager_impl_unittest.cc b/chrome/browser/chromeos/input_method/input_method_manager_impl_unittest.cc
|
| index 89a1f87bb60f363c7ef81e26171bef8a2d927cb6..524db6ffdd5260a08ba1a302ad1c164a7f047b2f 100644
|
| --- a/chrome/browser/chromeos/input_method/input_method_manager_impl_unittest.cc
|
| +++ b/chrome/browser/chromeos/input_method/input_method_manager_impl_unittest.cc
|
| @@ -809,7 +809,8 @@ TEST_F(InputMethodManagerImplTest, TestAddRemoveExtensionInputMethods) {
|
| std::string(kExtensionImePrefix) + "deadbeef",
|
| "deadbeef input method",
|
| layouts,
|
| - "en-US");
|
| + "en-US",
|
| + NULL);
|
| EXPECT_EQ(2U, manager_->GetNumActiveInputMethods());
|
| EXPECT_EQ(1, controller_->start_count_); // should be started.
|
| {
|
| @@ -824,7 +825,8 @@ TEST_F(InputMethodManagerImplTest, TestAddRemoveExtensionInputMethods) {
|
| std::string(kExtensionImePrefix) + "cafebabe",
|
| "cafebabe input method",
|
| layouts,
|
| - "en-US");
|
| + "en-US",
|
| + NULL);
|
| EXPECT_EQ(3U, manager_->GetNumActiveInputMethods());
|
| {
|
| scoped_ptr<InputMethodDescriptors> methods(
|
| @@ -867,7 +869,8 @@ TEST_F(InputMethodManagerImplTest, TestAddExtensionInputThenLockScreen) {
|
| std::string(kExtensionImePrefix) + "deadbeef",
|
| "deadbeef input method",
|
| layouts,
|
| - "en-US");
|
| + "en-US",
|
| + NULL);
|
| EXPECT_EQ(2U, manager_->GetNumActiveInputMethods());
|
| EXPECT_EQ(1, observer.input_method_changed_count_);
|
|
|
|
|