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

Unified Diff: components/arc/arc_service_manager.h

Issue 1590723003: Host-side implementation of ARC Intent handler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Support new GURL interface at https://chromium.googlesource.com/chromium/src/+/dfbcc3b7926990bbf523… Created 4 years, 11 months 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
« no previous file with comments | « components/arc/arc_bridge_service.cc ('k') | components/arc/arc_service_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/arc_service_manager.h
diff --git a/components/arc/arc_service_manager.h b/components/arc/arc_service_manager.h
index 8b0bc8c23bcbcd84774518ab8fca5665d257685e..205eb7ba0df054bd924fa24ede84d6d95f6dfbf9 100644
--- a/components/arc/arc_service_manager.h
+++ b/components/arc/arc_service_manager.h
@@ -17,6 +17,7 @@ class ArcBridgeService;
class ArcClipboardBridge;
class ArcImeBridge;
class ArcInputBridge;
+class ArcIntentHelperBridge;
class ArcNotificationManager;
class ArcPowerBridge;
class ArcSettingsBridge;
@@ -27,6 +28,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();
@@ -51,6 +53,7 @@ class ArcServiceManager {
scoped_ptr<ArcClipboardBridge> arc_clipboard_bridge_;
scoped_ptr<ArcImeBridge> arc_ime_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_;
« no previous file with comments | « components/arc/arc_bridge_service.cc ('k') | components/arc/arc_service_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698