| Index: content/browser/browser_main_loop.cc
|
| diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc
|
| index 17c6ebedb1ff5c38473b8ce8f60fdef1305d5d12..f5cc593317a52764c04516ffb72e3c425397c794 100644
|
| --- a/content/browser/browser_main_loop.cc
|
| +++ b/content/browser/browser_main_loop.cc
|
| @@ -101,6 +101,7 @@
|
| #include <commctrl.h>
|
| #include <shellapi.h>
|
|
|
| +#include "base/win/memory_pressure_monitor.h"
|
| #include "content/browser/system_message_window_win.h"
|
| #include "content/common/sandbox_win.h"
|
| #include "net/base/winsock_init.h"
|
| @@ -613,6 +614,8 @@ int BrowserMainLoop::PreCreateThreads() {
|
| }
|
| #elif defined(OS_MACOSX) && !defined(OS_IOS)
|
| memory_pressure_monitor_.reset(new base::MemoryPressureMonitorMac());
|
| +#elif defined(OS_WIN)
|
| + memory_pressure_monitor_.reset(new base::win::MemoryPressureMonitor());
|
| #endif
|
|
|
| #if defined(ENABLE_PLUGINS)
|
|
|