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

Unified Diff: chrome/browser/chromeos/input_method/input_method_property.h

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_property.h
diff --git a/chrome/browser/chromeos/input_method/input_method_property.h b/chrome/browser/chromeos/input_method/input_method_property.h
index 4016111cc91dc33859d8ae5cfb8d02dbdb4ce4ce..8745221b7e7f144ad8b96f3c39265361a6b63b0f 100644
--- a/chrome/browser/chromeos/input_method/input_method_property.h
+++ b/chrome/browser/chromeos/input_method/input_method_property.h
@@ -16,8 +16,7 @@ struct InputMethodProperty {
InputMethodProperty(const std::string& in_key,
const std::string& in_label,
bool in_is_selection_item,
- bool in_is_selection_item_checked,
- int in_selection_item_id);
+ bool in_is_selection_item_checked);
InputMethodProperty();
~InputMethodProperty();
@@ -35,10 +34,6 @@ struct InputMethodProperty {
bool is_selection_item; // true if the property is a selection item.
bool is_selection_item_checked; // true if |is_selection_item| is true and
// the selection_item is selected.
- int selection_item_id; // A group ID (>= 0) of the selection item.
- // kInvalidSelectionItemId if |is_selection_item| is
- // false.
- static const int kInvalidSelectionItemId = -1;
};
typedef std::vector<InputMethodProperty> InputMethodPropertyList;

Powered by Google App Engine
This is Rietveld 408576698