| Index: chrome/common/form_data.h
|
| diff --git a/chrome/common/form_data.h b/chrome/common/form_data.h
|
| index 018c9f91584baddf2f0a579aed4df838a8336d0e..40d94347c768c3358646604acb29e2822f65dd2b 100644
|
| --- a/chrome/common/form_data.h
|
| +++ b/chrome/common/form_data.h
|
| @@ -9,10 +9,19 @@
|
|
|
| #include "base/string16.h"
|
| #include "chrome/common/form_field_data.h"
|
| +#include "content/public/common/ssl_status.h"
|
| #include "googleurl/src/gurl.h"
|
|
|
| // Holds information about a form to be filled and/or submitted.
|
| struct FormData {
|
| + FormData();
|
| + FormData(const FormData& data);
|
| + ~FormData();
|
| +
|
| + // Used by FormStructureTest.
|
| + bool operator==(const FormData& form) const;
|
| + bool operator!=(const FormData& form) const;
|
| +
|
| // The name of the form.
|
| string16 name;
|
| // GET or POST.
|
| @@ -25,14 +34,8 @@ struct FormData {
|
| bool user_submitted;
|
| // A vector of all the input fields in the form.
|
| std::vector<FormFieldData> fields;
|
| -
|
| - FormData();
|
| - FormData(const FormData& data);
|
| - ~FormData();
|
| -
|
| - // Used by FormStructureTest.
|
| - bool operator==(const FormData& form) const;
|
| - bool operator!=(const FormData& form) const;
|
| + // SSL status of the frame contatining the form.
|
| + content::SSLStatus ssl_status;
|
| };
|
|
|
| #endif // CHROME_COMMON_FORM_DATA_H__
|
|
|