| 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 e11e4c7a29ee5a52edc263b31edf6d7d63630d05..77248d43f2a04eb4786551bae956c5a6cf39855e 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"
|
| @@ -834,6 +835,7 @@ void RenderProcessHostImpl::CreateMessageFilters() {
|
| AddFilter(new VibrationMessageFilter());
|
| screen_orientation_dispatcher_host_ = new ScreenOrientationDispatcherHost();
|
| AddFilter(screen_orientation_dispatcher_host_);
|
| + AddFilter(new PushMessagingMessageFilter());
|
| }
|
|
|
| int RenderProcessHostImpl::GetNextRoutingID() {
|
|
|