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

Side by Side Diff: content/browser/payments/payment_manager.cc

Issue 2806133002: PaymentHandler: Implement set/get methods in PaymentInstruments (content) (Closed)
Patch Set: rebase 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 unified diff | Download patch
OLDNEW
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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 void PaymentManager::GetManifest(const GetManifestCallback& callback) { 54 void PaymentManager::GetManifest(const GetManifestCallback& callback) {
55 DCHECK_CURRENTLY_ON(BrowserThread::IO); 55 DCHECK_CURRENTLY_ON(BrowserThread::IO);
56 56
57 payment_app_context_->payment_app_database()->ReadManifest(scope_, callback); 57 payment_app_context_->payment_app_database()->ReadManifest(scope_, callback);
58 } 58 }
59 59
60 void PaymentManager::SetPaymentInstrument( 60 void PaymentManager::SetPaymentInstrument(
61 const std::string& instrumentKey, 61 const std::string& instrumentKey,
62 payments::mojom::PaymentInstrumentPtr details, 62 payments::mojom::PaymentInstrumentPtr details,
63 const PaymentManager::SetPaymentInstrumentCallback& callback) { 63 const PaymentManager::SetPaymentInstrumentCallback& callback) {
64 callback.Run(payments::mojom::PaymentHandlerStatus::NOT_IMPLEMENTED); 64 DCHECK_CURRENTLY_ON(BrowserThread::IO);
65
66 payment_app_context_->payment_app_database()->WritePaymentInstrument(
67 scope_, instrumentKey, std::move(details), callback);
65 } 68 }
66 69
67 void PaymentManager::GetPaymentInstrument( 70 void PaymentManager::GetPaymentInstrument(
68 const std::string& instrumentKey, 71 const std::string& instrumentKey,
69 const PaymentManager::GetPaymentInstrumentCallback& callback) { 72 const PaymentManager::GetPaymentInstrumentCallback& callback) {
70 callback.Run(payments::mojom::PaymentInstrument::New(), 73 DCHECK_CURRENTLY_ON(BrowserThread::IO);
71 payments::mojom::PaymentHandlerStatus::NOT_IMPLEMENTED); 74
75 payment_app_context_->payment_app_database()->ReadPaymentInstrument(
76 scope_, instrumentKey, callback);
72 } 77 }
73 78
74 void PaymentManager::OnConnectionError() { 79 void PaymentManager::OnConnectionError() {
75 DCHECK_CURRENTLY_ON(BrowserThread::IO); 80 DCHECK_CURRENTLY_ON(BrowserThread::IO);
76 payment_app_context_->PaymentManagerHadConnectionError(this); 81 payment_app_context_->PaymentManagerHadConnectionError(this);
77 } 82 }
78 83
79 } // namespace content 84 } // namespace content
OLDNEW
« 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