| Index: chrome/common/chrome_switches.cc
|
| diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
|
| index bd008047d8402fc5af087e2420fe392eb8f94dbe..64a99196c5b14852fa00661d97b5a8e1aedd08ce 100644
|
| --- a/chrome/common/chrome_switches.cc
|
| +++ b/chrome/common/chrome_switches.cc
|
| @@ -612,10 +612,6 @@ const char kEnableSdch[] = "enable-sdch";
|
| // Enable SPDY/3. This is a temporary testing flag.
|
| const char kEnableSpdy3[] = "enable-spdy3";
|
|
|
| -// Enable speculative resource prefetching.
|
| -const char kEnableSpeculativeResourcePrefetching[] =
|
| - "enable-speculative-resource-prefetching";
|
| -
|
| // Enables the stacked tabstrip.
|
| const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip";
|
|
|
| @@ -1189,6 +1185,17 @@ const char kSimulateUpgrade[] = "simulate-upgrade";
|
| // ClientSocketReusePolicy.
|
| const char kSocketReusePolicy[] = "socket-reuse-policy";
|
|
|
| +// Speculative resource prefetching.
|
| +const char kSpeculativeResourcePrefetching[] =
|
| + "speculative-resource-prefetching";
|
| +
|
| +// Speculative resource prefetching is disabled.
|
| +const char kSpeculativeResourcePrefetchingDisabled[] = "disabled";
|
| +
|
| +// Speculative resource prefetching will only learn about resources that need to
|
| +// be prefetched but will not prefetch them.
|
| +const char kSpeculativeResourcePrefetchingLearning[] = "learning";
|
| +
|
| // Specifies the maximum SSL/TLS version ("ssl3", "tls1", "tls1.1", or
|
| // "tls1.2").
|
| const char kSSLVersionMax[] = "ssl-version-max";
|
|
|