| Index: content/browser/payments/payment_app_content_unittest_base.h
|
| diff --git a/content/browser/payments/payment_app_content_unittest_base.h b/content/browser/payments/payment_app_content_unittest_base.h
|
| index 7e98f00826eadfa8aaf1d24bfb9d07c3c476e79c..9461e5fadd81a649614589221fbd4b52e73059ed 100644
|
| --- a/content/browser/payments/payment_app_content_unittest_base.h
|
| +++ b/content/browser/payments/payment_app_content_unittest_base.h
|
| @@ -12,7 +12,7 @@
|
| #include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "components/payments/content/payment_app.mojom.h"
|
| -#include "content/browser/payments/payment_app_manager.h"
|
| +#include "content/browser/payments/payment_manager.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "url/gurl.h"
|
|
|
| @@ -29,13 +29,13 @@ class PaymentAppContentUnitTestBase : public testing::Test {
|
| ~PaymentAppContentUnitTestBase() override;
|
|
|
| BrowserContext* browser_context();
|
| - PaymentAppManager* CreatePaymentAppManager(const GURL& scope_url,
|
| - const GURL& sw_script_url);
|
| - void SetManifest(PaymentAppManager* manager,
|
| + PaymentManager* CreatePaymentManager(const GURL& scope_url,
|
| + const GURL& sw_script_url);
|
| + void SetManifest(PaymentManager* manager,
|
| payments::mojom::PaymentAppManifestPtr manifest,
|
| - const PaymentAppManager::SetManifestCallback& callback);
|
| - void GetManifest(PaymentAppManager* manager,
|
| - const PaymentAppManager::GetManifestCallback& callback);
|
| + const PaymentManager::SetManifestCallback& callback);
|
| + void GetManifest(PaymentManager* manager,
|
| + const PaymentManager::GetManifestCallback& callback);
|
| payments::mojom::PaymentAppManifestPtr CreatePaymentAppManifestForTest(
|
| const std::string& name);
|
| void UnregisterServiceWorker(const GURL& scope_url);
|
| @@ -52,7 +52,7 @@ class PaymentAppContentUnitTestBase : public testing::Test {
|
|
|
| std::unique_ptr<TestBrowserThreadBundle> thread_bundle_;
|
| std::unique_ptr<PaymentAppForWorkerTestHelper> worker_helper_;
|
| - std::vector<payments::mojom::PaymentAppManagerPtr> payment_app_managers_;
|
| + std::vector<payments::mojom::PaymentManagerPtr> payment_managers_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(PaymentAppContentUnitTestBase);
|
| };
|
|
|