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

Side by Side Diff: components/autofill/core/common/form_data.h

Issue 178263004: rAc - Only show countries we're able to fill in. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix android build Created 6 years, 9 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 | « components/autofill/core/browser/form_structure_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 COMPONENTS_AUTOFILL_CORE_COMMON_FORM_DATA_H__ 5 #ifndef COMPONENTS_AUTOFILL_CORE_COMMON_FORM_DATA_H_
6 #define COMPONENTS_AUTOFILL_CORE_COMMON_FORM_DATA_H__ 6 #define COMPONENTS_AUTOFILL_CORE_COMMON_FORM_DATA_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
11 #include "components/autofill/core/common/form_field_data.h" 11 #include "components/autofill/core/common/form_field_data.h"
12 #include "url/gurl.h" 12 #include "url/gurl.h"
13 13
14 namespace autofill { 14 namespace autofill {
15 15
16 // Holds information about a form to be filled and/or submitted. 16 // Holds information about a form to be filled and/or submitted.
(...skipping 25 matching lines...) Expand all
42 42
43 // Serialize FormData. Used by the PasswordManager to persist FormData 43 // Serialize FormData. Used by the PasswordManager to persist FormData
44 // pertaining to password forms. Serialized data is appended to |pickle| 44 // pertaining to password forms. Serialized data is appended to |pickle|
45 void SerializeFormData(const FormData& form_data, Pickle* pickle); 45 void SerializeFormData(const FormData& form_data, Pickle* pickle);
46 // Deserialize FormData. This assumes that |iter| is currently pointing to 46 // Deserialize FormData. This assumes that |iter| is currently pointing to
47 // the part of a pickle created by SerializeFormData. Returns true on success. 47 // the part of a pickle created by SerializeFormData. Returns true on success.
48 bool DeserializeFormData(PickleIterator* iter, FormData* form_data); 48 bool DeserializeFormData(PickleIterator* iter, FormData* form_data);
49 49
50 } // namespace autofill 50 } // namespace autofill
51 51
52 #endif // COMPONENTS_AUTOFILL_CORE_COMMON_FORM_DATA_H__ 52 #endif // COMPONENTS_AUTOFILL_CORE_COMMON_FORM_DATA_H_
OLDNEW
« no previous file with comments | « components/autofill/core/browser/form_structure_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698