| Index: content/browser/utility_process_host_impl.cc
|
| diff --git a/content/browser/utility_process_host_impl.cc b/content/browser/utility_process_host_impl.cc
|
| index db67d60dc225e1c161e818315153975801596476..c57526d8a8371972c0ffc03694c3da61e7b3cc9e 100644
|
| --- a/content/browser/utility_process_host_impl.cc
|
| +++ b/content/browser/utility_process_host_impl.cc
|
| @@ -38,6 +38,7 @@
|
| #include "ui/base/ui_base_switches.h"
|
|
|
| #if defined(OS_WIN)
|
| +#include "content/public/common/prefetch_argument_win.h"
|
| #include "sandbox/win/src/sandbox_policy.h"
|
| #include "sandbox/win/src/sandbox_types.h"
|
| #endif
|
| @@ -286,6 +287,10 @@ bool UtilityProcessHostImpl::StartProcess() {
|
| std::string locale = GetContentClient()->browser()->GetApplicationLocale();
|
| cmd_line->AppendSwitchASCII(switches::kLang, locale);
|
|
|
| +#if defined(OS_WIN)
|
| + AddWindowsPrefetchArgument(PREFETCH_ID_DEFAULT, cmd_line);
|
| +#endif // defined(OS_WIN)
|
| +
|
| if (no_sandbox_)
|
| cmd_line->AppendSwitch(switches::kNoSandbox);
|
|
|
|
|