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

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

Issue 2476343002: PaymentApp: Initial implementation for PaymentAppManager.setManifest(). (Closed)
Patch Set: fix lint error 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
« no previous file with comments | « content/browser/payments/payment_app_context.cc ('k') | content/browser/payments/payment_app_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..7316c217e4774337eb23acabff79a8ce97dd1389
--- /dev/null
+++ b/content/browser/payments/payment_app_manager.h
@@ -0,0 +1,50 @@
+// 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 <string>
+
+#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_
« no previous file with comments | « content/browser/payments/payment_app_context.cc ('k') | content/browser/payments/payment_app_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698