| 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 1193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1204 // Simulates an update being available. | 1204 // Simulates an update being available. |
| 1205 const char kSimulateUpgrade[] = "simulate-upgrade"; | 1205 const char kSimulateUpgrade[] = "simulate-upgrade"; |
| 1206 | 1206 |
| 1207 // Replaces the buffered data source for <audio> and <video> with a simplified | 1207 // Replaces the buffered data source for <audio> and <video> with a simplified |
| 1208 // resource loader that downloads the entire resource into memory. | 1208 // resource loader that downloads the entire resource into memory. |
| 1209 | 1209 |
| 1210 // Socket reuse policy. The value should be of type enum | 1210 // Socket reuse policy. The value should be of type enum |
| 1211 // ClientSocketReusePolicy. | 1211 // ClientSocketReusePolicy. |
| 1212 const char kSocketReusePolicy[] = "socket-reuse-policy"; | 1212 const char kSocketReusePolicy[] = "socket-reuse-policy"; |
| 1213 | 1213 |
| 1214 // Origin for which SpdyProxy authentication is supported. |
| 1215 const char kSpdyProxyOrigin[] = "spdy-proxy-origin"; |
| 1216 |
| 1214 // Speculative resource prefetching. | 1217 // Speculative resource prefetching. |
| 1215 const char kSpeculativeResourcePrefetching[] = | 1218 const char kSpeculativeResourcePrefetching[] = |
| 1216 "speculative-resource-prefetching"; | 1219 "speculative-resource-prefetching"; |
| 1217 | 1220 |
| 1218 // Speculative resource prefetching is disabled. | 1221 // Speculative resource prefetching is disabled. |
| 1219 const char kSpeculativeResourcePrefetchingDisabled[] = "disabled"; | 1222 const char kSpeculativeResourcePrefetchingDisabled[] = "disabled"; |
| 1220 | 1223 |
| 1221 // Speculative resource prefetching will only learn about resources that need to | 1224 // Speculative resource prefetching will only learn about resources that need to |
| 1222 // be prefetched but will not prefetch them. | 1225 // be prefetched but will not prefetch them. |
| 1223 const char kSpeculativeResourcePrefetchingLearning[] = "learning"; | 1226 const char kSpeculativeResourcePrefetchingLearning[] = "learning"; |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1580 | 1583 |
| 1581 // ----------------------------------------------------------------------------- | 1584 // ----------------------------------------------------------------------------- |
| 1582 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1585 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1583 // | 1586 // |
| 1584 // You were going to just dump your switches here, weren't you? Instead, please | 1587 // You were going to just dump your switches here, weren't you? Instead, please |
| 1585 // put them in alphabetical order above, or in order inside the appropriate | 1588 // put them in alphabetical order above, or in order inside the appropriate |
| 1586 // ifdef at the bottom. The order should match the header. | 1589 // ifdef at the bottom. The order should match the header. |
| 1587 // ----------------------------------------------------------------------------- | 1590 // ----------------------------------------------------------------------------- |
| 1588 | 1591 |
| 1589 } // namespace switches | 1592 } // namespace switches |
| OLD | NEW |