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

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

Issue 1904163002: Move Web Notifications to use Mojo Base URL: https://chromium.googlesource.com/chromium/src.git@skbitmap-blink
Patch Set: it works \o/ Created 4 years, 8 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/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 f5646797ab5f86e35d90d8b11ec2aecff41548aa..f2518fa64721e9ccb5e6c7350fd8105e13e5273c 100644
--- a/content/browser/renderer_host/render_process_host_impl.h
+++ b/content/browser/renderer_host/render_process_host_impl.h
@@ -54,7 +54,6 @@ class InProcessChildThreadParams;
class MessagePortMessageFilter;
class MojoApplicationHost;
class MojoChildConnection;
-class NotificationMessageFilter;
#if defined(ENABLE_WEBRTC)
class P2PSocketDispatcherHost;
#endif
@@ -249,10 +248,6 @@ class CONTENT_EXPORT RenderProcessHostImpl
return message_port_message_filter_.get();
}
- NotificationMessageFilter* notification_message_filter() const {
- return notification_message_filter_.get();
- }
-
void set_is_for_guests_only_for_testing(bool is_for_guests_only) {
is_for_guests_only_ = is_for_guests_only;
}
@@ -384,10 +379,6 @@ class CONTENT_EXPORT RenderProcessHostImpl
// 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_;
-
// Used in single-process mode.
std::unique_ptr<base::Thread> in_process_renderer_;
« no previous file with comments | « content/browser/notifications/type_converters.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