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

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

Issue 10025015: Add operator= to InputMethodProperty. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: added operator!= per offline discussion Created 8 years, 8 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 | chrome/browser/chromeos/input_method/input_method_property.cc » ('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_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 e9aa54f3f4bd48e4821674da23d84e986a05a38f..5122b23eab367ec12668e8c27125de86916687fc 100644
--- a/chrome/browser/chromeos/input_method/input_method_property.h
+++ b/chrome/browser/chromeos/input_method/input_method_property.h
@@ -23,6 +23,9 @@ struct InputMethodProperty {
InputMethodProperty();
~InputMethodProperty();
+ bool operator==(const InputMethodProperty& other) const;
+ bool operator!=(const InputMethodProperty& other) const;
+
// Debug print function.
std::string ToString() const;
« no previous file with comments | « no previous file | chrome/browser/chromeos/input_method/input_method_property.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698