| 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 90d4f0df388461e0cd4a1d15854e4095ae55fd5f..91f168fec333d1d3877213dd8ec9ce97df1519f5 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -1323,6 +1323,11 @@ void RenderProcessHostImpl::AppendRendererCommandLine(
|
| command_line->AppendSwitchASCII(switches::kProcessType,
|
| switches::kRendererProcess);
|
|
|
| +#if defined(OS_WIN)
|
| + if (GetContentClient()->browser()->ShouldUseWindowsPrefetchArgument())
|
| + command_line->AppendArg(switches::kPrefetchArgumentRenderer);
|
| +#endif // defined(OS_WIN)
|
| +
|
| // Now send any options from our own command line we want to propagate.
|
| const base::CommandLine& browser_command_line =
|
| *base::CommandLine::ForCurrentProcess();
|
|
|