OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #include "content/browser/payments/payment_manager.h" | 5 #include "content/browser/payments/payment_manager.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/optional.h" | 10 #include "base/optional.h" |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 void PaymentManager::SetPaymentInstrument( | 69 void PaymentManager::SetPaymentInstrument( |
70 const std::string& instrument_key, | 70 const std::string& instrument_key, |
71 payments::mojom::PaymentInstrumentPtr details, | 71 payments::mojom::PaymentInstrumentPtr details, |
72 const PaymentManager::SetPaymentInstrumentCallback& callback) { | 72 const PaymentManager::SetPaymentInstrumentCallback& callback) { |
73 DCHECK_CURRENTLY_ON(BrowserThread::IO); | 73 DCHECK_CURRENTLY_ON(BrowserThread::IO); |
74 | 74 |
75 payment_app_context_->payment_app_database()->WritePaymentInstrument( | 75 payment_app_context_->payment_app_database()->WritePaymentInstrument( |
76 scope_, instrument_key, std::move(details), callback); | 76 scope_, instrument_key, std::move(details), callback); |
77 } | 77 } |
78 | 78 |
| 79 void PaymentManager::HasPaymentInstrument( |
| 80 const std::string& instrument_key, |
| 81 const HasPaymentInstrumentCallback& callback) { |
| 82 DCHECK_CURRENTLY_ON(BrowserThread::IO); |
| 83 |
| 84 payment_app_context_->payment_app_database()->HasPaymentInstrument( |
| 85 scope_, instrument_key, callback); |
| 86 } |
| 87 |
79 void PaymentManager::GetPaymentInstrument( | 88 void PaymentManager::GetPaymentInstrument( |
80 const std::string& instrument_key, | 89 const std::string& instrument_key, |
81 const PaymentManager::GetPaymentInstrumentCallback& callback) { | 90 const PaymentManager::GetPaymentInstrumentCallback& callback) { |
82 DCHECK_CURRENTLY_ON(BrowserThread::IO); | 91 DCHECK_CURRENTLY_ON(BrowserThread::IO); |
83 | 92 |
84 payment_app_context_->payment_app_database()->ReadPaymentInstrument( | 93 payment_app_context_->payment_app_database()->ReadPaymentInstrument( |
85 scope_, instrument_key, callback); | 94 scope_, instrument_key, callback); |
86 } | 95 } |
87 | 96 |
88 void PaymentManager::OnConnectionError() { | 97 void PaymentManager::OnConnectionError() { |
89 DCHECK_CURRENTLY_ON(BrowserThread::IO); | 98 DCHECK_CURRENTLY_ON(BrowserThread::IO); |
90 payment_app_context_->PaymentManagerHadConnectionError(this); | 99 payment_app_context_->PaymentManagerHadConnectionError(this); |
91 } | 100 } |
92 | 101 |
93 } // namespace content | 102 } // namespace content |
OLD | NEW |