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 1190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1201 // specified. | 1201 // specified. |
1202 const char kSilentDumpOnDCHECK[] = "silent-dump-on-dcheck"; | 1202 const char kSilentDumpOnDCHECK[] = "silent-dump-on-dcheck"; |
1203 | 1203 |
1204 // Causes Chrome to launch without opening any windows by default. Useful if | 1204 // Causes Chrome to launch without opening any windows by default. Useful if |
1205 // one wishes to use Chrome as an ash server. | 1205 // one wishes to use Chrome as an ash server. |
1206 const char kSilentLaunch[] = "silent-launch"; | 1206 const char kSilentLaunch[] = "silent-launch"; |
1207 | 1207 |
1208 // Simulates an update being available. | 1208 // Simulates an update being available. |
1209 const char kSimulateUpgrade[] = "simulate-upgrade"; | 1209 const char kSimulateUpgrade[] = "simulate-upgrade"; |
1210 | 1210 |
| 1211 // Simulates a critical update being available. |
| 1212 const char kSimulateCriticalUpdate[] = "simulate-critical-update"; |
| 1213 |
| 1214 // Simulates that current version is outdated. |
| 1215 const char kSimulateOutdated[] = "simulate-outdated"; |
| 1216 |
1211 // Replaces the buffered data source for <audio> and <video> with a simplified | 1217 // Replaces the buffered data source for <audio> and <video> with a simplified |
1212 // resource loader that downloads the entire resource into memory. | 1218 // resource loader that downloads the entire resource into memory. |
1213 | 1219 |
1214 // Socket reuse policy. The value should be of type enum | 1220 // Socket reuse policy. The value should be of type enum |
1215 // ClientSocketReusePolicy. | 1221 // ClientSocketReusePolicy. |
1216 const char kSocketReusePolicy[] = "socket-reuse-policy"; | 1222 const char kSocketReusePolicy[] = "socket-reuse-policy"; |
1217 | 1223 |
1218 // Origin for which SpdyProxy authentication is supported. | 1224 // Origin for which SpdyProxy authentication is supported. |
1219 const char kSpdyProxyOrigin[] = "spdy-proxy-origin"; | 1225 const char kSpdyProxyOrigin[] = "spdy-proxy-origin"; |
1220 | 1226 |
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1646 | 1652 |
1647 // ----------------------------------------------------------------------------- | 1653 // ----------------------------------------------------------------------------- |
1648 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1654 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1649 // | 1655 // |
1650 // You were going to just dump your switches here, weren't you? Instead, please | 1656 // You were going to just dump your switches here, weren't you? Instead, please |
1651 // put them in alphabetical order above, or in order inside the appropriate | 1657 // put them in alphabetical order above, or in order inside the appropriate |
1652 // ifdef at the bottom. The order should match the header. | 1658 // ifdef at the bottom. The order should match the header. |
1653 // ----------------------------------------------------------------------------- | 1659 // ----------------------------------------------------------------------------- |
1654 | 1660 |
1655 } // namespace switches | 1661 } // namespace switches |
OLD | NEW |