Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Side by Side Diff: chrome/browser/ui/autofill/data_model_wrapper.h

Issue 12434004: Move remaining Autofill code to //components/autofill. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698