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

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

Issue 2476343002: PaymentApp: Initial implementation for PaymentAppManager.setManifest(). (Closed)
Patch Set: PaymentApp: Initial implementation for PaymentAppManager.setManifest(). Created 4 years, 1 month 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.h
diff --git a/content/browser/payments/payment_app_manager.h b/content/browser/payments/payment_app_manager.h
new file mode 100644
index 0000000000000000000000000000000000000000..9967f2e04ee78774e7ec7bd39af4105e147f4cbf
--- /dev/null
+++ b/content/browser/payments/payment_app_manager.h
@@ -0,0 +1,48 @@
+// 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_MANAGER_H_
+#define CONTENT_BROWSER_PAYMENTS_PAYMENT_APP_MANAGER_H_
+
+#include "base/macros.h"
+#include "base/memory/weak_ptr.h"
+#include "components/payments/payment_app.mojom.h"
+#include "content/common/content_export.h"
+#include "mojo/public/cpp/bindings/binding.h"
+
+namespace content {
+
+class PaymentAppContext;
+
+class CONTENT_EXPORT PaymentAppManager
+ : public NON_EXPORTED_BASE(payments::mojom::PaymentAppManager) {
+ public:
+ PaymentAppManager(
+ PaymentAppContext* payment_app_context,
+ mojo::InterfaceRequest<payments::mojom::PaymentAppManager> request);
+
+ ~PaymentAppManager() override;
+
+ private:
+ // payments::mojom::PaymentAppManager methods:
+ void SetManifest(const std::string& scope,
+ payments::mojom::PaymentAppManifestPtr manifest,
+ const SetManifestCallback& callback) override;
+
+ // Called when an error is detected on binding_.
+ void OnConnectionError();
+
+ // payment_app_context_ owns this.
+ PaymentAppContext* payment_app_context_;
+
+ mojo::Binding<payments::mojom::PaymentAppManager> binding_;
+
+ base::WeakPtrFactory<PaymentAppManager> weak_ptr_factory_;
+
+ DISALLOW_COPY_AND_ASSIGN(PaymentAppManager);
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_PAYMENTS_PAYMENT_APP_MANAGER_H_

Powered by Google App Engine
This is Rietveld 408576698