Index: content/browser/plugin_process_host.cc |
diff --git a/content/browser/plugin_process_host.cc b/content/browser/plugin_process_host.cc |
index 9ede7a2cf42dde9c0f82f3b92bf9af473717a94f..cb14fa7b669940ec814a48538e391b7be4a36064 100644 |
--- a/content/browser/plugin_process_host.cc |
+++ b/content/browser/plugin_process_host.cc |
@@ -209,6 +209,11 @@ bool PluginProcessHost::Init(const WebPluginInfo& info) { |
cmd_line->AppendSwitchASCII(switches::kProcessType, switches::kPluginProcess); |
cmd_line->AppendSwitchPath(switches::kPluginPath, info.path); |
+#if defined(OS_WIN) |
+ if (GetContentClient()->browser()->ShouldUseWindowsPrefetchArgument()) |
+ cmd_line->AppendArg(switches::kPrefetchArgumentOther); |
+#endif // defined(OS_WIN) |
+ |
// Propagate the following switches to the plugin command line (along with |
// any associated values) if present in the browser command line |
static const char* const kSwitchNames[] = { |