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

Unified Diff: components/arc/arc_service_manager.h

Issue 1495723004: Minimum implementation of ARC clipboard Bridge (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 0bc481f8afe04f08cb0b7055ac04030b899860c5..b4f92f60a78531bc1cbcb470c73a9391d37cd456 100644
--- a/components/arc/arc_service_manager.h
+++ b/components/arc/arc_service_manager.h
@@ -15,6 +15,7 @@ class ArcBridgeService;
class ArcInputBridge;
class ArcSettingsBridge;
class ArcPowerBridge;
+class ArcClipboardBridge;
Luis Héctor Chávez 2016/01/04 16:46:39 nit: Lexicographic order.
cnwan 2016/01/05 07:15:44 Done.
// Manages creation and destruction of services that communicate with the ARC
// instance via the ArcBridgeService.
@@ -37,6 +38,7 @@ class ArcServiceManager {
scoped_ptr<ArcInputBridge> arc_input_bridge_;
scoped_ptr<ArcSettingsBridge> arc_settings_bridge_;
scoped_ptr<ArcPowerBridge> arc_power_bridge_;
+ scoped_ptr<ArcClipboardBridge> arc_clipboard_bridge_;
Luis Héctor Chávez 2016/01/04 16:46:39 nit: Lexicographic order.
cnwan 2016/01/05 07:15:44 Done.
DISALLOW_COPY_AND_ASSIGN(ArcServiceManager);
};
« 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