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

Side by Side Diff: chrome/common/form_data.h

Issue 11348273: [autofill] Fill in values on a successful run of interactive autocomplete. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: var rename Created 8 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
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 CHROME_COMMON_FORM_DATA_H__ 5 #ifndef CHROME_COMMON_FORM_DATA_H__
6 #define CHROME_COMMON_FORM_DATA_H__ 6 #define CHROME_COMMON_FORM_DATA_H__
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/string16.h" 10 #include "base/string16.h"
(...skipping 14 matching lines...) Expand all
25 bool user_submitted; 25 bool user_submitted;
26 // A vector of all the input fields in the form. 26 // A vector of all the input fields in the form.
27 std::vector<FormFieldData> fields; 27 std::vector<FormFieldData> fields;
28 28
29 FormData(); 29 FormData();
30 FormData(const FormData& data); 30 FormData(const FormData& data);
31 ~FormData(); 31 ~FormData();
32 32
33 // Used by FormStructureTest. 33 // Used by FormStructureTest.
34 bool operator==(const FormData& form) const; 34 bool operator==(const FormData& form) const;
35 bool operator!=(const FormData& form) const;
35 }; 36 };
36 37
37 #endif // CHROME_COMMON_FORM_DATA_H__ 38 #endif // CHROME_COMMON_FORM_DATA_H__
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698