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

Unified Diff: content/browser/payments/payment_app_content_unittest_base.h

Issue 2556433002: PaymentApp: Implement GetAllManifests() in PaymentAppContext. (Closed)
Patch Set: addressed comments 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
« no previous file with comments | « no previous file | content/browser/payments/payment_app_content_unittest_base.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
new file mode 100644
index 0000000000000000000000000000000000000000..d9cc41e4b7ca3675ddb7c07bac3de03579d06fe5
--- /dev/null
+++ b/content/browser/payments/payment_app_content_unittest_base.h
@@ -0,0 +1,56 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_BROWSER_PAYMENTS_PAYMENT_APP_CONTENT_UNITTEST_BASE_H_
+#define CONTENT_BROWSER_PAYMENTS_PAYMENT_APP_CONTENT_UNITTEST_BASE_H_
+
+#include <memory>
+#include <string>
+#include <vector>
+
+#include "base/macros.h"
+#include "base/memory/ref_counted.h"
+#include "components/payments/payment_app.mojom.h"
+#include "content/browser/payments/payment_app_manager.h"
+#include "testing/gtest/include/gtest/gtest.h"
+#include "url/gurl.h"
+
+namespace content {
+
+class EmbeddedWorkerTestHelper;
+class PaymentAppContextImpl;
+class StoragePartitionImpl;
+class TestBrowserThreadBundle;
+
+class PaymentAppContentUnitTestBase : public testing::Test {
+ protected:
+ PaymentAppContentUnitTestBase();
+ ~PaymentAppContentUnitTestBase() override;
+
+ PaymentAppContextImpl* payment_app_context() const {
+ return payment_app_context_.get();
+ }
+ PaymentAppManager* CreatePaymentAppManager(const GURL& scope_url,
+ const GURL& sw_script_url);
+ void SetManifest(PaymentAppManager* manager,
+ const std::string& scope,
+ payments::mojom::PaymentAppManifestPtr manifest,
+ const PaymentAppManager::SetManifestCallback& callback);
+ void GetManifest(PaymentAppManager* manager,
+ const std::string& scope,
+ const PaymentAppManager::GetManifestCallback& callback);
+
+ private:
+ std::unique_ptr<TestBrowserThreadBundle> thread_bundle_;
+ std::unique_ptr<EmbeddedWorkerTestHelper> embedded_worker_helper_;
+ std::unique_ptr<StoragePartitionImpl> storage_partition_impl_;
+ scoped_refptr<PaymentAppContextImpl> payment_app_context_;
+ std::vector<payments::mojom::PaymentAppManagerPtr> payment_app_managers_;
+
+ DISALLOW_COPY_AND_ASSIGN(PaymentAppContentUnitTestBase);
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_PAYMENTS_PAYMENT_APP_CONTENT_UNITTEST_BASE_H_
« no previous file with comments | « no previous file | content/browser/payments/payment_app_content_unittest_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698