Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Unified Diff: content/browser/payments/payment_manager.cc

Issue 2858773002: Revert of PaymentHandler: Implement PaymentInstruments.keys(). (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/payments/payment_manager.h ('k') | content/browser/payments/payment_manager_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/payments/payment_manager.cc
diff --git a/content/browser/payments/payment_manager.cc b/content/browser/payments/payment_manager.cc
index 0538e227e87c6bef3e94f3c4bbac2b71a6e35f7b..f1a9cc0f11d5a3bfcc1d2558562885279ae74d4a 100644
--- a/content/browser/payments/payment_manager.cc
+++ b/content/browser/payments/payment_manager.cc
@@ -66,32 +66,6 @@
scope_, instrument_key, callback);
}
-void PaymentManager::GetPaymentInstrument(
- const std::string& instrument_key,
- const PaymentManager::GetPaymentInstrumentCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::IO);
-
- payment_app_context_->payment_app_database()->ReadPaymentInstrument(
- scope_, instrument_key, callback);
-}
-
-void PaymentManager::KeysOfPaymentInstruments(
- const PaymentManager::KeysOfPaymentInstrumentsCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::IO);
-
- payment_app_context_->payment_app_database()->KeysOfPaymentInstruments(
- scope_, callback);
-}
-
-void PaymentManager::HasPaymentInstrument(
- const std::string& instrument_key,
- const PaymentManager::HasPaymentInstrumentCallback& callback) {
- DCHECK_CURRENTLY_ON(BrowserThread::IO);
-
- payment_app_context_->payment_app_database()->HasPaymentInstrument(
- scope_, instrument_key, callback);
-}
-
void PaymentManager::SetPaymentInstrument(
const std::string& instrument_key,
payments::mojom::PaymentInstrumentPtr details,
@@ -102,6 +76,24 @@
scope_, instrument_key, std::move(details), callback);
}
+void PaymentManager::HasPaymentInstrument(
+ const std::string& instrument_key,
+ const HasPaymentInstrumentCallback& callback) {
+ DCHECK_CURRENTLY_ON(BrowserThread::IO);
+
+ payment_app_context_->payment_app_database()->HasPaymentInstrument(
+ scope_, instrument_key, callback);
+}
+
+void PaymentManager::GetPaymentInstrument(
+ const std::string& instrument_key,
+ const PaymentManager::GetPaymentInstrumentCallback& callback) {
+ DCHECK_CURRENTLY_ON(BrowserThread::IO);
+
+ payment_app_context_->payment_app_database()->ReadPaymentInstrument(
+ scope_, instrument_key, callback);
+}
+
void PaymentManager::OnConnectionError() {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
payment_app_context_->PaymentManagerHadConnectionError(this);
« no previous file with comments | « content/browser/payments/payment_manager.h ('k') | content/browser/payments/payment_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698