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

Unified Diff: chrome/common/form_field_data.h

Issue 11737034: Make ~FormFieldData() not virtual. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 7 years, 12 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/form_field_data.h
diff --git a/chrome/common/form_field_data.h b/chrome/common/form_field_data.h
index de9375f6d4152c2a421b8865f5fa3bcdbc88df00..690e67a3afcd3764e1fdfecc56e91ba1761daf04 100644
--- a/chrome/common/form_field_data.h
+++ b/chrome/common/form_field_data.h
@@ -12,7 +12,7 @@
// Stores information about a field in a form.
struct FormFieldData {
FormFieldData();
- virtual ~FormFieldData();
+ ~FormFieldData();
// Equality tests for identity which does not include |value| or
// |is_autofilled|.
@@ -20,7 +20,7 @@ struct FormFieldData {
// ids.
bool operator==(const FormFieldData& field) const;
bool operator!=(const FormFieldData& field) const;
- // Comparsion operator exposed for STL map. Uses label, then name to sort.
+ // Comparison operator exposed for STL map. Uses label, then name to sort.
bool operator<(const FormFieldData& field) const;
string16 label;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698