| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 COMPONENTS_AUTOFILL_CONTENT_BROWSER_WALLET_WALLET_CLIENT_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CONTENT_BROWSER_WALLET_WALLET_CLIENT_H_ |
| 6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_WALLET_WALLET_CLIENT_H_ | 6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_WALLET_WALLET_CLIENT_H_ |
| 7 | 7 |
| 8 #include <queue> | 8 #include <queue> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/callback.h" // For base::Closure. | 12 #include "base/callback.h" // For base::Closure. |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/time.h" | 14 #include "base/time.h" |
| 15 #include "base/values.h" | 15 #include "base/values.h" |
| 16 #include "components/autofill/browser/autofill_manager_delegate.h" | |
| 17 #include "components/autofill/browser/autofill_metrics.h" | |
| 18 #include "components/autofill/content/browser/wallet/encryption_escrow_client.h" | 16 #include "components/autofill/content/browser/wallet/encryption_escrow_client.h" |
| 19 #include "components/autofill/content/browser/wallet/encryption_escrow_client_ob
server.h" | 17 #include "components/autofill/content/browser/wallet/encryption_escrow_client_ob
server.h" |
| 20 #include "components/autofill/content/browser/wallet/full_wallet.h" | 18 #include "components/autofill/content/browser/wallet/full_wallet.h" |
| 21 #include "components/autofill/content/browser/wallet/wallet_items.h" | 19 #include "components/autofill/content/browser/wallet/wallet_items.h" |
| 20 #include "components/autofill/core/browser/autofill_manager_delegate.h" |
| 21 #include "components/autofill/core/browser/autofill_metrics.h" |
| 22 #include "components/autofill/core/common/autocheckout_status.h" | 22 #include "components/autofill/core/common/autocheckout_status.h" |
| 23 #include "googleurl/src/gurl.h" | 23 #include "googleurl/src/gurl.h" |
| 24 #include "net/url_request/url_fetcher_delegate.h" | 24 #include "net/url_request/url_fetcher_delegate.h" |
| 25 #include "testing/gtest/include/gtest/gtest_prod.h" | 25 #include "testing/gtest/include/gtest/gtest_prod.h" |
| 26 | 26 |
| 27 namespace net { | 27 namespace net { |
| 28 class URLFetcher; | 28 class URLFetcher; |
| 29 class URLRequestContextGetter; | 29 class URLRequestContextGetter; |
| 30 } | 30 } |
| 31 | 31 |
| (...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 // When the current request started. Used to track client side latency. | 317 // When the current request started. Used to track client side latency. |
| 318 base::Time request_started_timestamp_; | 318 base::Time request_started_timestamp_; |
| 319 | 319 |
| 320 DISALLOW_COPY_AND_ASSIGN(WalletClient); | 320 DISALLOW_COPY_AND_ASSIGN(WalletClient); |
| 321 }; | 321 }; |
| 322 | 322 |
| 323 } // namespace wallet | 323 } // namespace wallet |
| 324 } // namespace autofill | 324 } // namespace autofill |
| 325 | 325 |
| 326 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_WALLET_WALLET_CLIENT_H_ | 326 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_WALLET_WALLET_CLIENT_H_ |
| OLD | NEW |