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

Unified Diff: components/arc/arc_service_manager.h

Issue 1451353002: Implement GpuArcVideoService for arc video accelerator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed dcheng's comments 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 3ab6308207e53b495695f8a4e8765ada9e35b731..635ebd9f69b5781f5404c546d3aa6775a6283660 100644
--- a/components/arc/arc_service_manager.h
+++ b/components/arc/arc_service_manager.h
@@ -14,15 +14,17 @@ namespace arc {
class ArcAuthService;
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:
ArcServiceManager(scoped_ptr<ArcAuthService> auth_service,
- scoped_ptr<ArcSettingsBridge> settings_bridge);
+ scoped_ptr<ArcSettingsBridge> settings_bridge,
+ scoped_ptr<ArcVideoBridge> video_bridge);
virtual ~ArcServiceManager();
// |arc_bridge_service| can only be accessed on the thread that this
@@ -42,6 +44,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);
};

Powered by Google App Engine
This is Rietveld 408576698