| 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 "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/string16.h" | 9 #include "base/string16.h" |
| 10 #include "chrome/browser/autofill/field_types.h" | |
| 11 #include "chrome/browser/autofill/wallet/wallet_items.h" | |
| 12 #include "chrome/browser/ui/autofill/autofill_dialog_types.h" | 10 #include "chrome/browser/ui/autofill/autofill_dialog_types.h" |
| 11 #include "components/autofill/browser/field_types.h" |
| 12 #include "components/autofill/browser/wallet/wallet_items.h" |
| 13 | 13 |
| 14 class CreditCard; | 14 class CreditCard; |
| 15 class FormGroup; | 15 class FormGroup; |
| 16 class FormStructure; | 16 class FormStructure; |
| 17 | 17 |
| 18 namespace gfx { | 18 namespace gfx { |
| 19 class Image; | 19 class Image; |
| 20 } | 20 } |
| 21 | 21 |
| 22 namespace wallet { | 22 namespace wallet { |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 protected: | 125 protected: |
| 126 virtual void FillFormField(AutofillField* field) OVERRIDE; | 126 virtual void FillFormField(AutofillField* field) OVERRIDE; |
| 127 | 127 |
| 128 private: | 128 private: |
| 129 const wallet::WalletItems::MaskedInstrument* instrument_; | 129 const wallet::WalletItems::MaskedInstrument* instrument_; |
| 130 }; | 130 }; |
| 131 | 131 |
| 132 } | 132 } |
| 133 | 133 |
| 134 #endif // CHROME_BROWSER_UI_AUTOFILL_DATA_MODEL_WRAPPER_H_ | 134 #endif // CHROME_BROWSER_UI_AUTOFILL_DATA_MODEL_WRAPPER_H_ |
| OLD | NEW |