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 4411451af02c73ff1856cfc3aa0d9f68c8ebdfa3..8543f6d437b645501f3050ca2141fbc8dba7d225 100644 |
--- a/content/browser/renderer_host/render_process_host_impl.cc |
+++ b/content/browser/renderer_host/render_process_host_impl.cc |
@@ -73,6 +73,7 @@ |
#include "content/browser/media/capture/audio_mirroring_manager.h" |
#include "content/browser/media/media_internals.h" |
#include "content/browser/media/midi_host.h" |
+#include "content/browser/memory/memory_message_filter.h" |
#include "content/browser/message_port_message_filter.h" |
#include "content/browser/mime_registry_message_filter.h" |
#include "content/browser/mojo/mojo_application_host.h" |
@@ -960,6 +961,7 @@ void RenderProcessHostImpl::CreateMessageFilters() { |
if (browser_command_line.HasSwitch(switches::kEnableMemoryBenchmarking)) |
AddFilter(new MemoryBenchmarkMessageFilter()); |
#endif |
+ AddFilter(new MemoryMessageFilter()); |
AddFilter(new PushMessagingMessageFilter( |
GetID(), storage_partition_impl_->GetServiceWorkerContext())); |
#if defined(OS_ANDROID) |