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

Unified Diff: components/arc/arc_service_manager.cc

Issue 1495723004: Minimum implementation of ARC clipboard Bridge (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased and address review 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
« no previous file with comments | « components/arc/arc_service_manager.h ('k') | components/arc/clipboard/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/arc_service_manager.cc
diff --git a/components/arc/arc_service_manager.cc b/components/arc/arc_service_manager.cc
index 38553782dc0e3c9c2ac1f09f5256fcb31480e9ca..9b8bd81b0922b3e939b56bdb22b936e2f95fc4bc 100644
--- a/components/arc/arc_service_manager.cc
+++ b/components/arc/arc_service_manager.cc
@@ -9,6 +9,7 @@
#include "components/arc/arc_bridge_bootstrap.h"
#include "components/arc/arc_bridge_service_impl.h"
#include "components/arc/auth/arc_auth_service.h"
+#include "components/arc/clipboard/arc_clipboard_bridge.h"
#include "components/arc/input/arc_input_bridge.h"
#include "components/arc/power/arc_power_bridge.h"
#include "components/arc/settings/arc_settings_bridge.h"
@@ -28,6 +29,7 @@ ArcServiceManager::ArcServiceManager(
: arc_bridge_service_(
new ArcBridgeServiceImpl(ArcBridgeBootstrap::Create())),
arc_auth_service_(std::move(auth_service)),
+ arc_clipboard_bridge_(new ArcClipboardBridge(arc_bridge_service_.get())),
arc_input_bridge_(ArcInputBridge::Create(arc_bridge_service_.get())),
arc_settings_bridge_(std::move(settings_bridge)),
arc_power_bridge_(new ArcPowerBridge(arc_bridge_service_.get())) {
« no previous file with comments | « components/arc/arc_service_manager.h ('k') | components/arc/clipboard/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698