Make ~FormFieldData() not virtual.

No one ever subclasses FormFieldData, and it has no (other) virtual methods.


Review URL: https://chromiumcodereview.appspot.com/11737034

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@175253 0039d316-1c4b-4281-b951-d872f2087c98
parent a3029014
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment