| OLD | NEW |
| 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_BROWSER_AUTOFILL_ADDRESS_H_ | 5 #ifndef COMPONENTS_AUTOFILL_BROWSER_ADDRESS_H_ |
| 6 #define CHROME_BROWSER_AUTOFILL_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/string16.h" | 11 #include "base/string16.h" |
| 12 #include "chrome/browser/autofill/autofill_type.h" | 12 #include "components/autofill/browser/autofill_type.h" |
| 13 #include "chrome/browser/autofill/field_types.h" | 13 #include "components/autofill/browser/field_types.h" |
| 14 #include "chrome/browser/autofill/form_group.h" | 14 #include "components/autofill/browser/form_group.h" |
| 15 | 15 |
| 16 // A form group that stores address information. | 16 // A form group that stores address information. |
| 17 class Address : public FormGroup { | 17 class Address : public FormGroup { |
| 18 public: | 18 public: |
| 19 Address(); | 19 Address(); |
| 20 Address(const Address& address); | 20 Address(const Address& address); |
| 21 virtual ~Address(); | 21 virtual ~Address(); |
| 22 | 22 |
| 23 Address& operator=(const Address& address); | 23 Address& operator=(const Address& address); |
| 24 | 24 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 44 | 44 |
| 45 // The address. | 45 // The address. |
| 46 string16 line1_; | 46 string16 line1_; |
| 47 string16 line2_; | 47 string16 line2_; |
| 48 string16 city_; | 48 string16 city_; |
| 49 string16 state_; | 49 string16 state_; |
| 50 std::string country_code_; | 50 std::string country_code_; |
| 51 string16 zip_code_; | 51 string16 zip_code_; |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 #endif // CHROME_BROWSER_AUTOFILL_ADDRESS_H_ | 54 #endif // COMPONENTS_AUTOFILL_BROWSER_ADDRESS_H_ |
| OLD | NEW |