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