| 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_CLIENT_H_ | 5 #ifndef CHROME_BROWSER_AUTOFILL_WALLET_WALLET_CLIENT_H_ |
| 6 #define CHROME_BROWSER_AUTOFILL_WALLET_WALLET_CLIENT_H_ | 6 #define CHROME_BROWSER_AUTOFILL_WALLET_WALLET_CLIENT_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "base/values.h" | 13 #include "base/values.h" |
| 14 #include "chrome/browser/autofill/wallet/encryption_escrow_client.h" | 14 #include "chrome/browser/autofill/wallet/encryption_escrow_client.h" |
| 15 #include "chrome/browser/autofill/wallet/encryption_escrow_client_observer.h" | 15 #include "chrome/browser/autofill/wallet/encryption_escrow_client_observer.h" |
| 16 #include "chrome/browser/autofill/wallet/full_wallet.h" | 16 #include "chrome/browser/autofill/wallet/full_wallet.h" |
| 17 #include "chrome/common/autofill/autocheckout_status.h" | 17 #include "components/autofill/common/autocheckout_status.h" |
| 18 #include "net/url_request/url_fetcher_delegate.h" | 18 #include "net/url_request/url_fetcher_delegate.h" |
| 19 | 19 |
| 20 class GURL; | 20 class GURL; |
| 21 | 21 |
| 22 namespace net { | 22 namespace net { |
| 23 class URLFetcher; | 23 class URLFetcher; |
| 24 class URLRequestContextGetter; | 24 class URLRequestContextGetter; |
| 25 } | 25 } |
| 26 | 26 |
| 27 namespace autofill { | 27 namespace autofill { |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 | 214 |
| 215 base::WeakPtrFactory<WalletClient> weak_ptr_factory_; | 215 base::WeakPtrFactory<WalletClient> weak_ptr_factory_; |
| 216 | 216 |
| 217 DISALLOW_COPY_AND_ASSIGN(WalletClient); | 217 DISALLOW_COPY_AND_ASSIGN(WalletClient); |
| 218 }; | 218 }; |
| 219 | 219 |
| 220 } // namespace wallet | 220 } // namespace wallet |
| 221 } // namespace autofill | 221 } // namespace autofill |
| 222 | 222 |
| 223 #endif // CHROME_BROWSER_AUTOFILL_WALLET_WALLET_CLIENT_H_ | 223 #endif // CHROME_BROWSER_AUTOFILL_WALLET_WALLET_CLIENT_H_ |
| OLD | NEW |