| 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 af7d8ef6b9f377b62879f8062c4af79e9e5f8c55..8e33537b5cded081f0d706bd79b00b53ba28e5e5 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"
|
| @@ -840,6 +841,7 @@ void RenderProcessHostImpl::CreateMessageFilters() {
|
| AddFilter(new VibrationMessageFilter());
|
| screen_orientation_dispatcher_host_ = new ScreenOrientationDispatcherHost();
|
| AddFilter(screen_orientation_dispatcher_host_);
|
| + AddFilter(new PushMessagingMessageFilter());
|
| }
|
|
|
| int RenderProcessHostImpl::GetNextRoutingID() {
|
|
|