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_ |