| Index: content/browser/payments/payment_app_manager.h
|
| diff --git a/content/browser/payments/payment_app_manager.h b/content/browser/payments/payment_app_manager.h
|
| index 8f68347b9ccaa732fcf5f89361812cfa98cea819..12287ab4a1f8459edeeb343765562f7a27fa5ec3 100644
|
| --- a/content/browser/payments/payment_app_manager.h
|
| +++ b/content/browser/payments/payment_app_manager.h
|
| @@ -11,13 +11,11 @@
|
| #include "base/memory/weak_ptr.h"
|
| #include "components/payments/payment_app.mojom.h"
|
| #include "content/common/content_export.h"
|
| -#include "content/common/service_worker/service_worker_status_code.h"
|
| #include "mojo/public/cpp/bindings/binding.h"
|
|
|
| namespace content {
|
|
|
| class PaymentAppContextImpl;
|
| -class ServiceWorkerRegistration;
|
|
|
| class CONTENT_EXPORT PaymentAppManager
|
| : public NON_EXPORTED_BASE(payments::mojom::PaymentAppManager) {
|
| @@ -38,24 +36,6 @@ class CONTENT_EXPORT PaymentAppManager
|
| void GetManifest(const std::string& scope,
|
| const GetManifestCallback& callback) override;
|
|
|
| - // SetManifest callbacks
|
| - void DidFindRegistrationToSetManifest(
|
| - payments::mojom::PaymentAppManifestPtr manifest,
|
| - const SetManifestCallback& callback,
|
| - ServiceWorkerStatusCode status,
|
| - scoped_refptr<ServiceWorkerRegistration> registration);
|
| - void DidSetManifest(const SetManifestCallback& callback,
|
| - ServiceWorkerStatusCode status);
|
| -
|
| - // GetManifest callbacks
|
| - void DidFindRegistrationToGetManifest(
|
| - const GetManifestCallback& callback,
|
| - ServiceWorkerStatusCode status,
|
| - scoped_refptr<ServiceWorkerRegistration> registration);
|
| - void DidGetManifest(const GetManifestCallback& callback,
|
| - const std::vector<std::string>& data,
|
| - ServiceWorkerStatusCode status);
|
| -
|
| // Called when an error is detected on binding_.
|
| void OnConnectionError();
|
|
|
|
|