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

Side by Side Diff: webkit/glue/form_data.h

Issue 8741006: Add exports needed for glue to build as a component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase to r112585 Created 9 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/glue/dom_operations.h ('k') | webkit/glue/form_data_predictions.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WEBKIT_GLUE_FORM_DATA_H__ 5 #ifndef WEBKIT_GLUE_FORM_DATA_H__
6 #define WEBKIT_GLUE_FORM_DATA_H__ 6 #define WEBKIT_GLUE_FORM_DATA_H__
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/string16.h" 10 #include "base/string16.h"
11 #include "googleurl/src/gurl.h" 11 #include "googleurl/src/gurl.h"
12 #include "webkit/glue/form_field.h" 12 #include "webkit/glue/form_field.h"
13 #include "webkit/glue/webkit_glue_export.h"
13 14
14 namespace webkit_glue { 15 namespace webkit_glue {
15 16
16 // Holds information about a form to be filled and/or submitted. 17 // Holds information about a form to be filled and/or submitted.
17 struct FormData { 18 struct WEBKIT_GLUE_EXPORT FormData {
18 // The name of the form. 19 // The name of the form.
19 string16 name; 20 string16 name;
20 // GET or POST. 21 // GET or POST.
21 string16 method; 22 string16 method;
22 // The URL (minus query parameters) containing the form. 23 // The URL (minus query parameters) containing the form.
23 GURL origin; 24 GURL origin;
24 // The action target of the form. 25 // The action target of the form.
25 GURL action; 26 GURL action;
26 // true if this form was submitted by a user gesture and not javascript. 27 // true if this form was submitted by a user gesture and not javascript.
27 bool user_submitted; 28 bool user_submitted;
28 // A vector of all the input fields in the form. 29 // A vector of all the input fields in the form.
29 std::vector<FormField> fields; 30 std::vector<FormField> fields;
30 31
31 FormData(); 32 FormData();
32 FormData(const FormData& data); 33 FormData(const FormData& data);
33 ~FormData(); 34 ~FormData();
34 35
35 // Used by FormStructureTest. 36 // Used by FormStructureTest.
36 bool operator==(const FormData& form) const; 37 bool operator==(const FormData& form) const;
37 }; 38 };
38 39
39 } // namespace webkit_glue 40 } // namespace webkit_glue
40 41
41 #endif // WEBKIT_GLUE_FORM_DATA_H__ 42 #endif // WEBKIT_GLUE_FORM_DATA_H__
OLDNEW
« no previous file with comments | « webkit/glue/dom_operations.h ('k') | webkit/glue/form_data_predictions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698