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

Side by Side Diff: components/autofill/browser/address.h

Issue 14096009: [Autofill] Split off AutofillDataModel as a subclass of FormData. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Android compile Created 7 years, 8 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.gypi ('k') | components/autofill/browser/autofill_data_model.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 COMPONENTS_AUTOFILL_BROWSER_ADDRESS_H_ 5 #ifndef COMPONENTS_AUTOFILL_BROWSER_ADDRESS_H_
6 #define COMPONENTS_AUTOFILL_BROWSER_ADDRESS_H_ 6 #define COMPONENTS_AUTOFILL_BROWSER_ADDRESS_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/compiler_specific.h"
11 #include "base/string16.h" 12 #include "base/string16.h"
12 #include "components/autofill/browser/autofill_type.h" 13 #include "components/autofill/browser/autofill_type.h"
13 #include "components/autofill/browser/field_types.h" 14 #include "components/autofill/browser/field_types.h"
14 #include "components/autofill/browser/form_group.h" 15 #include "components/autofill/browser/form_group.h"
15 16
16 namespace autofill { 17 namespace autofill {
17 18
18 // A form group that stores address information. 19 // A form group that stores address information.
19 class Address : public FormGroup { 20 class Address : public FormGroup {
20 public: 21 public:
(...skipping 25 matching lines...) Expand all
46 base::string16 line2_; 47 base::string16 line2_;
47 base::string16 city_; 48 base::string16 city_;
48 base::string16 state_; 49 base::string16 state_;
49 base::string16 country_code_; 50 base::string16 country_code_;
50 base::string16 zip_code_; 51 base::string16 zip_code_;
51 }; 52 };
52 53
53 } // namespace autofill 54 } // namespace autofill
54 55
55 #endif // COMPONENTS_AUTOFILL_BROWSER_ADDRESS_H_ 56 #endif // COMPONENTS_AUTOFILL_BROWSER_ADDRESS_H_
OLDNEW
« no previous file with comments | « components/autofill.gypi ('k') | components/autofill/browser/autofill_data_model.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698