Index: components/arc/arc_service_manager.h |
diff --git a/components/arc/arc_service_manager.h b/components/arc/arc_service_manager.h |
index 0bc481f8afe04f08cb0b7055ac04030b899860c5..9ba6760aadbddf4d1bfdb0becf9f2a5a91c08287 100644 |
--- a/components/arc/arc_service_manager.h |
+++ b/components/arc/arc_service_manager.h |
@@ -13,14 +13,16 @@ namespace arc { |
class ArcBridgeService; |
class ArcInputBridge; |
-class ArcSettingsBridge; |
class ArcPowerBridge; |
+class ArcSettingsBridge; |
+class ArcVideoBridge; |
// Manages creation and destruction of services that communicate with the ARC |
// instance via the ArcBridgeService. |
class ArcServiceManager { |
public: |
- explicit ArcServiceManager(scoped_ptr<ArcSettingsBridge> settings_bridge); |
+ ArcServiceManager(scoped_ptr<ArcSettingsBridge> settings_bridge, |
+ scoped_ptr<ArcVideoBridge> video_service); |
Pawel Osciak
2015/12/30 07:39:15
s/video_service/video_bridge/
kcwu
2015/12/30 09:40:33
Done.
|
virtual ~ArcServiceManager(); |
// |arc_bridge_service| can only be accessed on the thread that this |
@@ -37,6 +39,7 @@ class ArcServiceManager { |
scoped_ptr<ArcInputBridge> arc_input_bridge_; |
scoped_ptr<ArcSettingsBridge> arc_settings_bridge_; |
scoped_ptr<ArcPowerBridge> arc_power_bridge_; |
+ scoped_ptr<ArcVideoBridge> arc_video_bridge_; |
DISALLOW_COPY_AND_ASSIGN(ArcServiceManager); |
}; |