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

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

Issue 11416261: Clean Up: remove unused variable selection_item_id (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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/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 b355bf6a8784eee48ebab59b7f6136b697803dd6..d3de2e07127e5aaeeb6ac511df0f1b87c1602d56 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
@@ -559,8 +559,7 @@ TEST_F(InputMethodManagerImplTest, TestGetCurrentInputMethodProperties) {
current_property_list.push_back(InputMethodProperty("key",
"label",
false,
- false,
- -1));
+ false));
controller_->SetCurrentPropertiesForTesting(current_property_list);
controller_->NotifyPropertyChangedForTesting();
@@ -592,8 +591,7 @@ TEST_F(InputMethodManagerImplTest, TestGetCurrentInputMethodPropertiesTwoImes) {
current_property_list.push_back(InputMethodProperty("key-mozc",
"label",
false,
- false,
- -1));
+ false));
controller_->SetCurrentPropertiesForTesting(current_property_list);
controller_->NotifyPropertyChangedForTesting();
@@ -609,8 +607,7 @@ TEST_F(InputMethodManagerImplTest, TestGetCurrentInputMethodPropertiesTwoImes) {
current_property_list.push_back(InputMethodProperty("key-chewing",
"label",
false,
- false,
- -1));
+ false));
controller_->SetCurrentPropertiesForTesting(current_property_list);
controller_->NotifyPropertyChangedForTesting();
ASSERT_EQ(1U, manager_->GetCurrentInputMethodProperties().size());

Powered by Google App Engine
This is Rietveld 408576698