| 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_AUTOFILL_WALLET_WALLET_ITEMS_H_ | 5 #ifndef COMPONENTS_AUTOFILL_BROWSER_WALLET_WALLET_ITEMS_H_ |
| 6 #define CHROME_BROWSER_AUTOFILL_WALLET_WALLET_ITEMS_H_ | 6 #define COMPONENTS_AUTOFILL_BROWSER_WALLET_WALLET_ITEMS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
| 13 #include "base/logging.h" | 13 #include "base/logging.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/memory/scoped_vector.h" | 15 #include "base/memory/scoped_vector.h" |
| 16 #include "base/string16.h" | 16 #include "base/string16.h" |
| 17 #include "chrome/browser/autofill/wallet/required_action.h" | 17 #include "components/autofill/browser/wallet/required_action.h" |
| 18 #include "chrome/browser/autofill/wallet/wallet_address.h" | 18 #include "components/autofill/browser/wallet/wallet_address.h" |
| 19 | 19 |
| 20 class GURL; | 20 class GURL; |
| 21 | 21 |
| 22 namespace base { | 22 namespace base { |
| 23 class DictionaryValue; | 23 class DictionaryValue; |
| 24 } | 24 } |
| 25 | 25 |
| 26 namespace gfx { | 26 namespace gfx { |
| 27 class Image; | 27 class Image; |
| 28 } | 28 } |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 | 252 |
| 253 // Legal documents the user must accept before using Online Wallet. | 253 // Legal documents the user must accept before using Online Wallet. |
| 254 ScopedVector<LegalDocument> legal_documents_; | 254 ScopedVector<LegalDocument> legal_documents_; |
| 255 | 255 |
| 256 DISALLOW_COPY_AND_ASSIGN(WalletItems); | 256 DISALLOW_COPY_AND_ASSIGN(WalletItems); |
| 257 }; | 257 }; |
| 258 | 258 |
| 259 } // namespace wallet | 259 } // namespace wallet |
| 260 } // namespace autofill | 260 } // namespace autofill |
| 261 | 261 |
| 262 #endif // CHROME_BROWSER_AUTOFILL_WALLET_WALLET_ITEMS_H_ | 262 #endif // COMPONENTS_AUTOFILL_BROWSER_WALLET_WALLET_ITEMS_H_ |
| OLD | NEW |