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

Unified Diff: content/browser/renderer_host/render_process_host_impl.h

Issue 2422793002: HTML MessagePort as mojo::MessagePipeHandle (Closed)
Patch Set: Add missing ScopedAsyncTaskScheduler instance for the new unit tests; required by a recent change t… Created 3 years, 10 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 | « content/browser/message_port_service.cc ('k') | content/browser/renderer_host/render_process_host_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/render_process_host_impl.h
diff --git a/content/browser/renderer_host/render_process_host_impl.h b/content/browser/renderer_host/render_process_host_impl.h
index 0ef85c81e601b624fd8d31388ca93f92c2ef9074..8fb3a0f6840f3529e8f221bf4b6eb0b482f7663d 100644
--- a/content/browser/renderer_host/render_process_host_impl.h
+++ b/content/browser/renderer_host/render_process_host_impl.h
@@ -60,7 +60,6 @@ class ChildConnection;
class GpuClient;
class IndexedDBDispatcherHost;
class InProcessChildThreadParams;
-class MessagePortMessageFilter;
class NotificationMessageFilter;
#if BUILDFLAG(ENABLE_WEBRTC)
class P2PSocketDispatcherHost;
@@ -259,10 +258,6 @@ class CONTENT_EXPORT RenderProcessHostImpl
return render_frame_message_filter_.get();
}
- MessagePortMessageFilter* message_port_message_filter() const {
- return message_port_message_filter_.get();
- }
-
NotificationMessageFilter* notification_message_filter() const {
return notification_message_filter_.get();
}
@@ -475,9 +470,6 @@ class CONTENT_EXPORT RenderProcessHostImpl
scoped_refptr<RenderFrameMessageFilter> render_frame_message_filter_;
- // The filter for MessagePort messages coming from the renderer.
- scoped_refptr<MessagePortMessageFilter> message_port_message_filter_;
-
// The filter for Web Notification messages coming from the renderer. Holds a
// closure per notification that must be freed when the notification closes.
scoped_refptr<NotificationMessageFilter> notification_message_filter_;
« no previous file with comments | « content/browser/message_port_service.cc ('k') | content/browser/renderer_host/render_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698