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

Unified Diff: content/child/child_thread_impl.cc

Issue 1192713004: Update client side navigator.connect API to use ServicePortCollection [2/3] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use mojo for all ServicePort related IPC Created 5 years, 6 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: content/child/child_thread_impl.cc
diff --git a/content/child/child_thread_impl.cc b/content/child/child_thread_impl.cc
index 04e020c5e971ce6552ae96bab197aacea0c56b86..a3b3d7b23c08d403eb327d5259fa7ecb9a591659 100644
--- a/content/child/child_thread_impl.cc
+++ b/content/child/child_thread_impl.cc
@@ -42,7 +42,6 @@
#include "content/child/fileapi/webfilesystem_impl.h"
#include "content/child/geofencing/geofencing_message_filter.h"
#include "content/child/mojo/mojo_application.h"
-#include "content/child/navigator_connect/navigator_connect_dispatcher.h"
#include "content/child/notifications/notification_dispatcher.h"
#include "content/child/power_monitor_broadcast_source.h"
#include "content/child/push_messaging/push_dispatcher.h"
@@ -377,8 +376,6 @@ void ChildThreadImpl::Init(const Options& options) {
notification_dispatcher_ =
new NotificationDispatcher(thread_safe_sender_.get());
push_dispatcher_ = new PushDispatcher(thread_safe_sender_.get());
- navigator_connect_dispatcher_ =
- new NavigatorConnectDispatcher(thread_safe_sender_.get());
channel_->AddFilter(histogram_message_filter_.get());
channel_->AddFilter(sync_message_filter_.get());
@@ -389,7 +386,6 @@ void ChildThreadImpl::Init(const Options& options) {
channel_->AddFilter(service_worker_message_filter_->GetFilter());
channel_->AddFilter(geofencing_message_filter_->GetFilter());
channel_->AddFilter(bluetooth_message_filter_->GetFilter());
- channel_->AddFilter(navigator_connect_dispatcher_->GetFilter());
if (!IsInBrowserProcess()) {
// In single process mode, browser-side tracing will cover the whole

Powered by Google App Engine
This is Rietveld 408576698