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

Side by Side Diff: webkit/forms/form_field.h

Issue 10870038: Remove unused headers and using declarations from form_field (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | webkit/forms/form_field.cc » ('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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_FORMS_FORM_FIELD_H_ 5 #ifndef WEBKIT_FORMS_FORM_FIELD_H_
6 #define WEBKIT_FORMS_FORM_FIELD_H_ 6 #define WEBKIT_FORMS_FORM_FIELD_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/string16.h" 10 #include "base/string16.h"
11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormControlElement .h"
12 #include "webkit/forms/webkit_forms_export.h" 11 #include "webkit/forms/webkit_forms_export.h"
13 12
14 namespace webkit { 13 namespace webkit {
15 namespace forms { 14 namespace forms {
16 15
17 // Stores information about a field in a form. 16 // Stores information about a field in a form.
18 struct WEBKIT_FORMS_EXPORT FormField { 17 struct WEBKIT_FORMS_EXPORT FormField {
19 FormField(); 18 FormField();
20 virtual ~FormField(); 19 virtual ~FormField();
21 20
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 EXPECT_EQ(expected.label, actual.label); \ 57 EXPECT_EQ(expected.label, actual.label); \
59 EXPECT_EQ(expected.name, actual.name); \ 58 EXPECT_EQ(expected.name, actual.name); \
60 EXPECT_EQ(expected.value, actual.value); \ 59 EXPECT_EQ(expected.value, actual.value); \
61 EXPECT_EQ(expected.form_control_type, actual.form_control_type); \ 60 EXPECT_EQ(expected.form_control_type, actual.form_control_type); \
62 EXPECT_EQ(expected.autocomplete_type, actual.autocomplete_type); \ 61 EXPECT_EQ(expected.autocomplete_type, actual.autocomplete_type); \
63 EXPECT_EQ(expected.max_length, actual.max_length); \ 62 EXPECT_EQ(expected.max_length, actual.max_length); \
64 EXPECT_EQ(expected.is_autofilled, actual.is_autofilled); \ 63 EXPECT_EQ(expected.is_autofilled, actual.is_autofilled); \
65 } while (0) 64 } while (0)
66 65
67 #endif // WEBKIT_FORMS_FORM_FIELD_H_ 66 #endif // WEBKIT_FORMS_FORM_FIELD_H_
OLDNEW
« no previous file with comments | « no previous file | webkit/forms/form_field.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698