Chromium Code Reviews| Index: components/arc/arc_service_manager.h |
| diff --git a/components/arc/arc_service_manager.h b/components/arc/arc_service_manager.h |
| index 7190df1496e3b1e52c1219ea97e89d61754aa711..1cfecec913a571dcc4f90d9da2f4d769a28259d1 100644 |
| --- a/components/arc/arc_service_manager.h |
| +++ b/components/arc/arc_service_manager.h |
| @@ -19,6 +19,7 @@ class SingleThreadTaskRunner; |
| namespace arc { |
| class ArcBridgeService; |
| +class ArcInputBridge; |
| // Manages creation and destruction of ARC related services. |
| class ArcServiceManager { |
| @@ -38,6 +39,9 @@ class ArcServiceManager { |
| private: |
| scoped_refptr<base::SequencedTaskRunner> origin_task_runner_; |
| + scoped_ptr<ArcInputBridge> arc_input_bridge_; |
| + |
| + // The arc bridge service should be destroyed last. |
| scoped_ptr<ArcBridgeService> arc_bridge_service_; |
|
Luis Héctor Chávez
2015/12/04 17:59:59
If you want to destroy it last, shouldn't it be de
denniskempin
2015/12/04 22:35:29
yes.. of course!
|
| DISALLOW_COPY_AND_ASSIGN(ArcServiceManager); |