| 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 447685a3382e8310ab61e8c4044c1dc5c34b0d9f..e6f6bca225d8ec89e8fabb1d62d65a45b8c727d1 100644
|
| --- a/content/browser/utility_process_host_impl.cc
|
| +++ b/content/browser/utility_process_host_impl.cc
|
| @@ -312,6 +312,11 @@ bool UtilityProcessHostImpl::StartProcess() {
|
| std::string locale = GetContentClient()->browser()->GetApplicationLocale();
|
| cmd_line->AppendSwitchASCII(switches::kLang, locale);
|
|
|
| +#if defined(OS_WIN)
|
| + if (GetContentClient()->browser()->ShouldUseWindowsPrefetchArgument())
|
| + cmd_line->AppendArg(switches::kPrefetchArgumentOther);
|
| +#endif // defined(OS_WIN)
|
| +
|
| if (no_sandbox_)
|
| cmd_line->AppendSwitch(switches::kNoSandbox);
|
|
|
|
|