| Index: content/browser/renderer_host/render_process_host_impl.cc
|
| diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
|
| index 06577763c69287f9b0e7b760ec36f87946492755..5e1c1f0dd7f8e2e47291290e3b666ceec3479b8c 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -67,6 +67,7 @@
|
| #include "content/browser/mime_registry_message_filter.h"
|
| #include "content/browser/plugin_service_impl.h"
|
| #include "content/browser/profiler_message_filter.h"
|
| +#include "content/browser/push_messaging_message_filter.h"
|
| #include "content/browser/quota_dispatcher_host.h"
|
| #include "content/browser/renderer_host/clipboard_message_filter.h"
|
| #include "content/browser/renderer_host/database_message_filter.h"
|
| @@ -795,6 +796,7 @@ void RenderProcessHostImpl::CreateMessageFilters() {
|
| AddFilter(new VibrationMessageFilter());
|
| screen_orientation_dispatcher_host_ = new ScreenOrientationDispatcherHost();
|
| AddFilter(screen_orientation_dispatcher_host_);
|
| + AddFilter(new PushMessagingMessageFilter(GetID()));
|
| }
|
|
|
| int RenderProcessHostImpl::GetNextRoutingID() {
|
|
|