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

Unified Diff: components/arc/arc_service_manager.h

Issue 1553613002: Add ArcAuthService to handle IPC request from ARC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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
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..3ab6308207e53b495695f8a4e8765ada9e35b731 100644
--- a/components/arc/arc_service_manager.h
+++ b/components/arc/arc_service_manager.h
@@ -11,6 +11,7 @@
namespace arc {
+class ArcAuthService;
class ArcBridgeService;
class ArcInputBridge;
class ArcSettingsBridge;
@@ -20,7 +21,8 @@ class ArcPowerBridge;
// instance via the ArcBridgeService.
class ArcServiceManager {
public:
- explicit ArcServiceManager(scoped_ptr<ArcSettingsBridge> settings_bridge);
+ ArcServiceManager(scoped_ptr<ArcAuthService> auth_service,
+ scoped_ptr<ArcSettingsBridge> settings_bridge);
virtual ~ArcServiceManager();
// |arc_bridge_service| can only be accessed on the thread that this
@@ -34,6 +36,9 @@ class ArcServiceManager {
private:
base::ThreadChecker thread_checker_;
scoped_ptr<ArcBridgeService> arc_bridge_service_;
+
+ // Individual services
+ scoped_ptr<ArcAuthService> arc_auth_service_;
scoped_ptr<ArcInputBridge> arc_input_bridge_;
scoped_ptr<ArcSettingsBridge> arc_settings_bridge_;
scoped_ptr<ArcPowerBridge> arc_power_bridge_;

Powered by Google App Engine
This is Rietveld 408576698