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