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 978007e229b527a77990894e17aecc2c2ba3bdff..d0547bdce7d9662a6455c5c913623cc111df12bf 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 |
@@ -306,15 +306,8 @@ TEST_F(InputMethodManagerImplTest, TestEnableLayouts) { |
InitIBusBus(); |
manager_->EnableLayouts("en-US", ""); |
EXPECT_EQ(5U, manager_->GetNumActiveInputMethods()); |
- { |
- // For http://crbug.com/19655#c11 - (1) |
- scoped_ptr<InputMethodDescriptors> methods( |
- manager_->GetActiveInputMethods()); |
- const InputMethodDescriptor* id_to_find = |
- manager_->GetInputMethodUtil()->GetInputMethodDescriptorFromId( |
- "english-m"); // The "English Mystery" IME. |
- EXPECT_FALSE(Contain(*methods.get(), *id_to_find)); |
- } |
+ for (size_t i = 0; i < manager_->GetActiveInputMethodIds().size(); ++i) |
+ LOG(ERROR) << manager_->GetActiveInputMethodIds().at(i); |
// For http://crbug.com/19655#c11 - (2) |
EXPECT_EQ(0, mock_ibus_daemon_controller_->start_count()); |