| OLD | NEW |
| 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 CHROME_BROWSER_UI_AUTOFILL_DATA_MODEL_WRAPPER_H_ | 5 #ifndef CHROME_BROWSER_UI_AUTOFILL_DATA_MODEL_WRAPPER_H_ |
| 6 #define CHROME_BROWSER_UI_AUTOFILL_DATA_MODEL_WRAPPER_H_ | 6 #define CHROME_BROWSER_UI_AUTOFILL_DATA_MODEL_WRAPPER_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/strings/string16.h" | 11 #include "base/strings/string16.h" |
| 12 #include "chrome/browser/ui/autofill/autofill_dialog_types.h" | |
| 13 #include "components/autofill/content/browser/wallet/wallet_items.h" | 12 #include "components/autofill/content/browser/wallet/wallet_items.h" |
| 14 #include "components/autofill/core/browser/field_types.h" | 13 #include "components/autofill/core/browser/field_types.h" |
| 15 #include "components/autofill/core/browser/form_structure.h" | 14 #include "components/autofill/core/browser/form_structure.h" |
| 15 #include "components/autofill/core/browser/ui/autofill_dialog_types.h" |
| 16 | 16 |
| 17 namespace gfx { | 17 namespace gfx { |
| 18 class Image; | 18 class Image; |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace i18n { | 21 namespace i18n { |
| 22 namespace addressinput { | 22 namespace addressinput { |
| 23 struct AddressData; | 23 struct AddressData; |
| 24 } | 24 } |
| 25 } | 25 } |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 | 230 |
| 231 private: | 231 private: |
| 232 const ::i18n::addressinput::AddressData* address_; | 232 const ::i18n::addressinput::AddressData* address_; |
| 233 | 233 |
| 234 DISALLOW_COPY_AND_ASSIGN(I18nAddressDataWrapper); | 234 DISALLOW_COPY_AND_ASSIGN(I18nAddressDataWrapper); |
| 235 }; | 235 }; |
| 236 | 236 |
| 237 } // namespace autofill | 237 } // namespace autofill |
| 238 | 238 |
| 239 #endif // CHROME_BROWSER_UI_AUTOFILL_DATA_MODEL_WRAPPER_H_ | 239 #endif // CHROME_BROWSER_UI_AUTOFILL_DATA_MODEL_WRAPPER_H_ |
| OLD | NEW |