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 AutofillProfile; | 14 class AutofillProfile; |
15 class CreditCard; | 15 class CreditCard; |
16 class FormGroup; | 16 class FormGroup; |
17 class FormStructure; | 17 class FormStructure; |
18 | 18 |
19 namespace gfx { | 19 namespace gfx { |
20 class Image; | 20 class Image; |
21 } | 21 } |
22 | 22 |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 protected: | 140 protected: |
141 virtual void FillFormField(AutofillField* field) OVERRIDE; | 141 virtual void FillFormField(AutofillField* field) OVERRIDE; |
142 | 142 |
143 private: | 143 private: |
144 const wallet::WalletItems::MaskedInstrument* instrument_; | 144 const wallet::WalletItems::MaskedInstrument* instrument_; |
145 }; | 145 }; |
146 | 146 |
147 } | 147 } |
148 | 148 |
149 #endif // CHROME_BROWSER_UI_AUTOFILL_DATA_MODEL_WRAPPER_H_ | 149 #endif // CHROME_BROWSER_UI_AUTOFILL_DATA_MODEL_WRAPPER_H_ |
OLD | NEW |