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/time.h" |
15 #include "base/values.h" | 15 #include "base/values.h" |
16 #include "components/autofill/content/browser/wallet/encryption_escrow_client.h" | 16 #include "components/autofill/content/browser/wallet/encryption_escrow_client.h" |
17 #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" |
18 #include "components/autofill/content/browser/wallet/full_wallet.h" | 18 #include "components/autofill/content/browser/wallet/full_wallet.h" |
19 #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" | 20 #include "components/autofill/core/browser/autofill_manager_delegate.h" |
21 #include "components/autofill/core/browser/autofill_metrics.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" |
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 // When the current request started. Used to track client side latency. | 318 // When the current request started. Used to track client side latency. |
319 base::Time request_started_timestamp_; | 319 base::Time request_started_timestamp_; |
320 | 320 |
321 DISALLOW_COPY_AND_ASSIGN(WalletClient); | 321 DISALLOW_COPY_AND_ASSIGN(WalletClient); |
322 }; | 322 }; |
323 | 323 |
324 } // namespace wallet | 324 } // namespace wallet |
325 } // namespace autofill | 325 } // namespace autofill |
326 | 326 |
327 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_WALLET_WALLET_CLIENT_H_ | 327 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_WALLET_WALLET_CLIENT_H_ |
OLD | NEW |