| Index: content/browser/browser_child_process_host_impl.cc
|
| diff --git a/content/browser/browser_child_process_host_impl.cc b/content/browser/browser_child_process_host_impl.cc
|
| index 0755e8b3b4d291a76f10da107f47b5aa595d93a9..d88d5de9e729c4c9d508bba0953a1181d7525a8c 100644
|
| --- a/content/browser/browser_child_process_host_impl.cc
|
| +++ b/content/browser/browser_child_process_host_impl.cc
|
| @@ -18,6 +18,7 @@
|
| #include "base/synchronization/waitable_event.h"
|
| #include "content/browser/histogram_message_filter.h"
|
| #include "content/browser/loader/resource_message_filter.h"
|
| +#include "content/browser/memory/memory_message_filter.h"
|
| #include "content/browser/profiler_message_filter.h"
|
| #include "content/browser/tracing/trace_message_filter.h"
|
| #include "content/common/child_process_host_impl.h"
|
| @@ -120,6 +121,7 @@ BrowserChildProcessHostImpl::BrowserChildProcessHostImpl(
|
| AddFilter(new TraceMessageFilter(data_.id));
|
| AddFilter(new ProfilerMessageFilter(process_type));
|
| AddFilter(new HistogramMessageFilter);
|
| + AddFilter(new MemoryMessageFilter);
|
|
|
| g_child_process_list.Get().push_back(this);
|
| GetContentClient()->browser()->BrowserChildProcessHostCreated(this);
|
|
|