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

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

Issue 20258002: Remove mystery keyboard layout from Chrome OS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove obsolete test code Created 7 years, 5 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
« no previous file with comments | « no previous file | chromeos/ime/input_methods.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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());
« no previous file with comments | « no previous file | chromeos/ime/input_methods.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698