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 1179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1190 // specified. | 1190 // specified. |
1191 const char kSilentDumpOnDCHECK[] = "silent-dump-on-dcheck"; | 1191 const char kSilentDumpOnDCHECK[] = "silent-dump-on-dcheck"; |
1192 | 1192 |
1193 // Causes Chrome to launch without opening any windows by default. Useful if | 1193 // Causes Chrome to launch without opening any windows by default. Useful if |
1194 // one wishes to use Chrome as an ash server. | 1194 // one wishes to use Chrome as an ash server. |
1195 const char kSilentLaunch[] = "silent-launch"; | 1195 const char kSilentLaunch[] = "silent-launch"; |
1196 | 1196 |
1197 // Simulates an update being available. | 1197 // Simulates an update being available. |
1198 const char kSimulateUpgrade[] = "simulate-upgrade"; | 1198 const char kSimulateUpgrade[] = "simulate-upgrade"; |
1199 | 1199 |
| 1200 // Simulates a critical update being available. |
| 1201 const char kSimulateCriticalUpdate[] = "simulate-critical-update"; |
| 1202 |
| 1203 // Simulates that current version is outdated. |
| 1204 const char kSimulateOutdated[] = "simulate-outdated"; |
| 1205 |
1200 // Replaces the buffered data source for <audio> and <video> with a simplified | 1206 // Replaces the buffered data source for <audio> and <video> with a simplified |
1201 // resource loader that downloads the entire resource into memory. | 1207 // resource loader that downloads the entire resource into memory. |
1202 | 1208 |
1203 // Socket reuse policy. The value should be of type enum | 1209 // Socket reuse policy. The value should be of type enum |
1204 // ClientSocketReusePolicy. | 1210 // ClientSocketReusePolicy. |
1205 const char kSocketReusePolicy[] = "socket-reuse-policy"; | 1211 const char kSocketReusePolicy[] = "socket-reuse-policy"; |
1206 | 1212 |
1207 // Origin for which SpdyProxy authentication is supported. | 1213 // Origin for which SpdyProxy authentication is supported. |
1208 const char kSpdyProxyOrigin[] = "spdy-proxy-origin"; | 1214 const char kSpdyProxyOrigin[] = "spdy-proxy-origin"; |
1209 | 1215 |
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1630 | 1636 |
1631 // ----------------------------------------------------------------------------- | 1637 // ----------------------------------------------------------------------------- |
1632 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1638 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1633 // | 1639 // |
1634 // You were going to just dump your switches here, weren't you? Instead, please | 1640 // You were going to just dump your switches here, weren't you? Instead, please |
1635 // put them in alphabetical order above, or in order inside the appropriate | 1641 // put them in alphabetical order above, or in order inside the appropriate |
1636 // ifdef at the bottom. The order should match the header. | 1642 // ifdef at the bottom. The order should match the header. |
1637 // ----------------------------------------------------------------------------- | 1643 // ----------------------------------------------------------------------------- |
1638 | 1644 |
1639 } // namespace switches | 1645 } // namespace switches |
OLD | NEW |