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

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

Issue 2556433002: PaymentApp: Implement GetAllManifests() in PaymentAppContext. (Closed)
Patch Set: Created 4 years 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
Index: content/browser/payments/payment_app_manager.cc
diff --git a/content/browser/payments/payment_app_manager.cc b/content/browser/payments/payment_app_manager.cc
index bb75263c60052a26af04bdf97ad0ad75402766c1..dc98a02c3c7ce4a920a584e938a16e4233201057 100644
--- a/content/browser/payments/payment_app_manager.cc
+++ b/content/browser/payments/payment_app_manager.cc
@@ -9,7 +9,7 @@
#include "base/bind.h"
#include "base/optional.h"
#include "content/browser/payments/payment_app.pb.h"
-#include "content/browser/payments/payment_app_context.h"
+#include "content/browser/payments/payment_app_context_impl.h"
#include "content/browser/service_worker/service_worker_context_wrapper.h"
#include "content/browser/service_worker/service_worker_registration.h"
#include "content/public/browser/browser_thread.h"
@@ -26,7 +26,7 @@ PaymentAppManager::~PaymentAppManager() {
}
PaymentAppManager::PaymentAppManager(
- PaymentAppContext* payment_app_context,
+ PaymentAppContextImpl* payment_app_context,
mojo::InterfaceRequest<payments::mojom::PaymentAppManager> request)
: payment_app_context_(payment_app_context),
binding_(this, std::move(request)),

Powered by Google App Engine
This is Rietveld 408576698