| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
| 6 | 6 |
| 7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 | 9 |
| 10 namespace switches { | 10 namespace switches { |
| (...skipping 1245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1256 | 1256 |
| 1257 // Simulates a critical update being available. | 1257 // Simulates a critical update being available. |
| 1258 const char kSimulateCriticalUpdate[] = "simulate-critical-update"; | 1258 const char kSimulateCriticalUpdate[] = "simulate-critical-update"; |
| 1259 | 1259 |
| 1260 // Simulates that current version is outdated. | 1260 // Simulates that current version is outdated. |
| 1261 const char kSimulateOutdated[] = "simulate-outdated"; | 1261 const char kSimulateOutdated[] = "simulate-outdated"; |
| 1262 | 1262 |
| 1263 // Replaces the buffered data source for <audio> and <video> with a simplified | 1263 // Replaces the buffered data source for <audio> and <video> with a simplified |
| 1264 // resource loader that downloads the entire resource into memory. | 1264 // resource loader that downloads the entire resource into memory. |
| 1265 | 1265 |
| 1266 // Socket reuse policy. The value should be of type enum | |
| 1267 // ClientSocketReusePolicy. | |
| 1268 const char kSocketReusePolicy[] = "socket-reuse-policy"; | |
| 1269 | |
| 1270 // Origin for which SpdyProxy authentication is supported. | 1266 // Origin for which SpdyProxy authentication is supported. |
| 1271 const char kSpdyProxyAuthOrigin[] = "spdy-proxy-auth-origin"; | 1267 const char kSpdyProxyAuthOrigin[] = "spdy-proxy-auth-origin"; |
| 1272 | 1268 |
| 1273 // Speculative resource prefetching. | 1269 // Speculative resource prefetching. |
| 1274 const char kSpeculativeResourcePrefetching[] = | 1270 const char kSpeculativeResourcePrefetching[] = |
| 1275 "speculative-resource-prefetching"; | 1271 "speculative-resource-prefetching"; |
| 1276 | 1272 |
| 1277 // Speculative resource prefetching is disabled. | 1273 // Speculative resource prefetching is disabled. |
| 1278 const char kSpeculativeResourcePrefetchingDisabled[] = "disabled"; | 1274 const char kSpeculativeResourcePrefetchingDisabled[] = "disabled"; |
| 1279 | 1275 |
| (...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1687 | 1683 |
| 1688 // ----------------------------------------------------------------------------- | 1684 // ----------------------------------------------------------------------------- |
| 1689 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1685 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1690 // | 1686 // |
| 1691 // You were going to just dump your switches here, weren't you? Instead, please | 1687 // You were going to just dump your switches here, weren't you? Instead, please |
| 1692 // put them in alphabetical order above, or in order inside the appropriate | 1688 // put them in alphabetical order above, or in order inside the appropriate |
| 1693 // ifdef at the bottom. The order should match the header. | 1689 // ifdef at the bottom. The order should match the header. |
| 1694 // ----------------------------------------------------------------------------- | 1690 // ----------------------------------------------------------------------------- |
| 1695 | 1691 |
| 1696 } // namespace switches | 1692 } // namespace switches |
| OLD | NEW |