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

Unified Diff: components/arc/arc_service_manager.h

Issue 1408263006: chromeos: Add ArcInputBridge to components/arc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@arcxx
Patch Set: integration with ArcServiceManager and ExoSurfaces Created 5 years 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: 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);

Powered by Google App Engine
This is Rietveld 408576698