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

Unified Diff: webkit/glue/form_data.h

Issue 3219002: FBTF: Move code from headers into cc files. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 4 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
Index: webkit/glue/form_data.h
diff --git a/webkit/glue/form_data.h b/webkit/glue/form_data.h
index 1556f24b642e36c87fa6eba2f93eb68043fb400c..f0011c7234e38a362cd4247b96ef2d45a4e1004b 100644
--- a/webkit/glue/form_data.h
+++ b/webkit/glue/form_data.h
@@ -28,17 +28,12 @@ struct FormData {
// A vector of all the input fields in the form.
std::vector<FormField> fields;
- FormData() : user_submitted(false) {}
+ FormData();
+ FormData(const FormData& data);
+ ~FormData();
// Used by FormStructureTest.
- inline bool operator==(const FormData& form) const {
- return (name == form.name &&
- StringToLowerASCII(method) == StringToLowerASCII(form.method) &&
- origin == form.origin &&
- action == form.action &&
- user_submitted == form.user_submitted &&
- fields == form.fields);
- }
+ bool operator==(const FormData& form) const;
};
} // namespace webkit_glue

Powered by Google App Engine
This is Rietveld 408576698