| Index: chrome/browser/chrome_content_browser_client.cc
|
| diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc
|
| index cd50af3b155fe345fbf91d03549591916a2902b7..f8a51aa8667d6539b3fa23a356f22efe59c4787d 100644
|
| --- a/chrome/browser/chrome_content_browser_client.cc
|
| +++ b/chrome/browser/chrome_content_browser_client.cc
|
| @@ -167,6 +167,7 @@
|
| #if defined(OS_WIN)
|
| #include "base/win/windows_version.h"
|
| #include "chrome/browser/chrome_browser_main_win.h"
|
| +#include "chrome/common/prefetch_argument_win.h"
|
| #include "sandbox/win/src/sandbox_policy.h"
|
| #elif defined(OS_MACOSX)
|
| #include "chrome/browser/chrome_browser_main_mac.h"
|
| @@ -1412,6 +1413,10 @@ void ChromeContentBrowserClient::AppendExtraCommandLineSwitches(
|
| const base::CommandLine& browser_command_line =
|
| *base::CommandLine::ForCurrentProcess();
|
|
|
| +#if defined(OS_WIN)
|
| + chrome::AddWindowsPrefetchArgument(command_line);
|
| +#endif // defined(OS_WIN)
|
| +
|
| static const char* const kCommonSwitchNames[] = {
|
| switches::kUserAgent,
|
| switches::kUserDataDir, // Make logs go to the right file.
|
|
|