| Index: components/arc/arc_service_manager.h
|
| diff --git a/components/arc/arc_service_manager.h b/components/arc/arc_service_manager.h
|
| index 0eaa7464f6a6d1c049d396ec2fcdbc194d3f1911..8c3f038848d9990500f99210e926ea1ac1379f69 100644
|
| --- a/components/arc/arc_service_manager.h
|
| +++ b/components/arc/arc_service_manager.h
|
| @@ -16,6 +16,7 @@ class ArcAuthService;
|
| class ArcBridgeService;
|
| class ArcClipboardBridge;
|
| class ArcInputBridge;
|
| +class ArcIntentHelperBridge;
|
| class ArcNotificationManager;
|
| class ArcPowerBridge;
|
| class ArcSettingsBridge;
|
| @@ -26,6 +27,7 @@ class ArcVideoBridge;
|
| class ArcServiceManager {
|
| public:
|
| ArcServiceManager(scoped_ptr<ArcAuthService> auth_service,
|
| + scoped_ptr<ArcIntentHelperBridge> intent_helper_bridge,
|
| scoped_ptr<ArcSettingsBridge> settings_bridge,
|
| scoped_ptr<ArcVideoBridge> video_bridge);
|
| virtual ~ArcServiceManager();
|
| @@ -49,6 +51,7 @@ class ArcServiceManager {
|
| scoped_ptr<ArcAuthService> arc_auth_service_;
|
| scoped_ptr<ArcClipboardBridge> arc_clipboard_bridge_;
|
| scoped_ptr<ArcInputBridge> arc_input_bridge_;
|
| + scoped_ptr<ArcIntentHelperBridge> arc_intent_helper_bridge_;
|
| scoped_ptr<ArcNotificationManager> arc_notification_manager_;
|
| scoped_ptr<ArcSettingsBridge> arc_settings_bridge_;
|
| scoped_ptr<ArcPowerBridge> arc_power_bridge_;
|
|
|