| Index: content/browser/ppapi_plugin_process_host.cc
|
| diff --git a/content/browser/ppapi_plugin_process_host.cc b/content/browser/ppapi_plugin_process_host.cc
|
| index 766a71390626c82162264baea8000721580708f6..9d0a965541029886d463ee6951e40b9021eb5d23 100644
|
| --- a/content/browser/ppapi_plugin_process_host.cc
|
| +++ b/content/browser/ppapi_plugin_process_host.cc
|
| @@ -389,6 +389,13 @@ bool PpapiPluginProcessHost::Init(const PepperPluginInfo& info) {
|
| : switches::kPpapiPluginProcess);
|
| cmd_line->AppendSwitchASCII(switches::kProcessChannelID, channel_id);
|
|
|
| +#if defined(OS_WIN)
|
| + if (GetContentClient()->browser()->ShouldUseWindowsPrefetchArgument()) {
|
| + cmd_line->AppendArg(is_broker_ ? switches::kPrefetchArgumentPpapiBroker
|
| + : switches::kPrefetchArgumentPpapi);
|
| + }
|
| +#endif // defined(OS_WIN)
|
| +
|
| // These switches are forwarded to both plugin and broker pocesses.
|
| static const char* kCommonForwardSwitches[] = {
|
| switches::kVModule
|
|
|