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

Unified Diff: components/arc/arc_service_manager.cc

Issue 1607603005: Revert of Host-side implementation of ARC Intent handler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/common/arc_bridge.mojom » ('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 f6eace9d38a690b3bac965b2e849e799a109246c..3769c03de9eb4880af4e55a91342f8338ddc9a50 100644
--- a/components/arc/arc_service_manager.cc
+++ b/components/arc/arc_service_manager.cc
@@ -14,7 +14,6 @@
#include "components/arc/clipboard/arc_clipboard_bridge.h"
#include "components/arc/ime/arc_ime_bridge.h"
#include "components/arc/input/arc_input_bridge.h"
-#include "components/arc/intent_helper/arc_intent_helper_bridge.h"
#include "components/arc/power/arc_power_bridge.h"
#include "components/arc/settings/arc_settings_bridge.h"
#include "components/arc/video/arc_video_bridge.h"
@@ -31,7 +30,6 @@
ArcServiceManager::ArcServiceManager(
scoped_ptr<ArcAuthService> auth_service,
- scoped_ptr<ArcIntentHelperBridge> intent_helper_bridge,
scoped_ptr<ArcSettingsBridge> settings_bridge,
scoped_ptr<ArcVideoBridge> video_bridge)
: arc_bridge_service_(
@@ -40,7 +38,6 @@
arc_clipboard_bridge_(new ArcClipboardBridge(arc_bridge_service_.get())),
arc_ime_bridge_(new ArcImeBridge(arc_bridge_service_.get())),
arc_input_bridge_(ArcInputBridge::Create(arc_bridge_service_.get())),
- arc_intent_helper_bridge_(std::move(intent_helper_bridge)),
arc_settings_bridge_(std::move(settings_bridge)),
arc_power_bridge_(new ArcPowerBridge(arc_bridge_service_.get())),
arc_video_bridge_(std::move(video_bridge)) {
@@ -49,7 +46,6 @@
arc_settings_bridge_->StartObservingBridgeServiceChanges();
arc_auth_service_->StartObservingBridgeServiceChanges();
- arc_intent_helper_bridge_->StartObservingBridgeServiceChanges();
arc_video_bridge_->StartObservingBridgeServiceChanges();
}
« no previous file with comments | « components/arc/arc_service_manager.h ('k') | components/arc/common/arc_bridge.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698