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 1205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1216 | 1216 |
1217 // Simulates an update being available. | 1217 // Simulates an update being available. |
1218 const char kSimulateUpgrade[] = "simulate-upgrade"; | 1218 const char kSimulateUpgrade[] = "simulate-upgrade"; |
1219 | 1219 |
1220 // Simulates a critical update being available. | 1220 // Simulates a critical update being available. |
1221 const char kSimulateCriticalUpdate[] = "simulate-critical-update"; | 1221 const char kSimulateCriticalUpdate[] = "simulate-critical-update"; |
1222 | 1222 |
1223 // Simulates that current version is outdated. | 1223 // Simulates that current version is outdated. |
1224 const char kSimulateOutdated[] = "simulate-outdated"; | 1224 const char kSimulateOutdated[] = "simulate-outdated"; |
1225 | 1225 |
| 1226 // Simulates that current version is outdated and auto-update is off. |
| 1227 const char kSimulateOutdatedNoAU[] = "simulate-outdated-no-au"; |
| 1228 |
1226 // Replaces the buffered data source for <audio> and <video> with a simplified | 1229 // Replaces the buffered data source for <audio> and <video> with a simplified |
1227 // resource loader that downloads the entire resource into memory. | 1230 // resource loader that downloads the entire resource into memory. |
1228 | 1231 |
1229 // Second origin that can be used for the spdy proxy. | 1232 // Second origin that can be used for the spdy proxy. |
1230 const char kSpdyProxyAuthFallback[] = "spdy-proxy-auth-fallback"; | 1233 const char kSpdyProxyAuthFallback[] = "spdy-proxy-auth-fallback"; |
1231 | 1234 |
1232 // Origin for which SpdyProxy authentication is supported. | 1235 // Origin for which SpdyProxy authentication is supported. |
1233 const char kSpdyProxyAuthOrigin[] = "spdy-proxy-auth-origin"; | 1236 const char kSpdyProxyAuthOrigin[] = "spdy-proxy-auth-origin"; |
1234 | 1237 |
1235 // Authentication string for the data reduction proxy. | 1238 // Authentication string for the data reduction proxy. |
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1547 | 1550 |
1548 // ----------------------------------------------------------------------------- | 1551 // ----------------------------------------------------------------------------- |
1549 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1552 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1550 // | 1553 // |
1551 // You were going to just dump your switches here, weren't you? Instead, please | 1554 // You were going to just dump your switches here, weren't you? Instead, please |
1552 // put them in alphabetical order above, or in order inside the appropriate | 1555 // put them in alphabetical order above, or in order inside the appropriate |
1553 // ifdef at the bottom. The order should match the header. | 1556 // ifdef at the bottom. The order should match the header. |
1554 // ----------------------------------------------------------------------------- | 1557 // ----------------------------------------------------------------------------- |
1555 | 1558 |
1556 } // namespace switches | 1559 } // namespace switches |
OLD | NEW |