| OLD | NEW |
| (Empty) |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CONTENT_BROWSER_PAYMENTS_PAYMENT_APP_CONTEXT_H_ | |
| 6 #define CONTENT_BROWSER_PAYMENTS_PAYMENT_APP_CONTEXT_H_ | |
| 7 | |
| 8 #include <map> | |
| 9 #include <memory> | |
| 10 | |
| 11 #include "base/macros.h" | |
| 12 #include "base/memory/ref_counted.h" | |
| 13 #include "components/payments/payment_app.mojom.h" | |
| 14 #include "content/common/content_export.h" | |
| 15 | |
| 16 namespace content { | |
| 17 | |
| 18 class PaymentAppManager; | |
| 19 class ServiceWorkerContextWrapper; | |
| 20 | |
| 21 class CONTENT_EXPORT PaymentAppContext | |
| 22 : public base::RefCountedThreadSafe<PaymentAppContext> { | |
| 23 public: | |
| 24 explicit PaymentAppContext( | |
| 25 scoped_refptr<ServiceWorkerContextWrapper> service_worker_context); | |
| 26 | |
| 27 // Shutdown must be called before deleting this. Call on the UI thread. | |
| 28 void Shutdown(); | |
| 29 | |
| 30 // Create a PaymentAppManager that is owned by this. Call on the UI | |
| 31 // thread. | |
| 32 void CreateService( | |
| 33 mojo::InterfaceRequest<payments::mojom::PaymentAppManager> request); | |
| 34 | |
| 35 // Called by PaymentAppManager objects so that they can | |
| 36 // be deleted. Call on the IO thread. | |
| 37 void ServiceHadConnectionError(PaymentAppManager* service); | |
| 38 | |
| 39 ServiceWorkerContextWrapper* service_worker_context() const; | |
| 40 | |
| 41 protected: | |
| 42 friend class base::RefCountedThreadSafe<PaymentAppContext>; | |
| 43 friend class PaymentAppManagerTest; | |
| 44 virtual ~PaymentAppContext(); | |
| 45 | |
| 46 private: | |
| 47 void CreateServiceOnIOThread( | |
| 48 mojo::InterfaceRequest<payments::mojom::PaymentAppManager> request); | |
| 49 | |
| 50 void ShutdownOnIO(); | |
| 51 | |
| 52 scoped_refptr<ServiceWorkerContextWrapper> service_worker_context_; | |
| 53 | |
| 54 // The services are owned by this. They're either deleted | |
| 55 // during ShutdownOnIO or when the channel is closed via | |
| 56 // ServiceHadConnectionError. Only accessed on the IO thread. | |
| 57 std::map<PaymentAppManager*, std::unique_ptr<PaymentAppManager>> services_; | |
| 58 | |
| 59 DISALLOW_COPY_AND_ASSIGN(PaymentAppContext); | |
| 60 }; | |
| 61 | |
| 62 } // namespace content | |
| 63 | |
| 64 #endif // CONTENT_BROWSER_PAYMENTS_PAYMENT_APP_CONTEXT_H_ | |
| OLD | NEW |