| 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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 // management backend. Specifying this switch turns on managed policy from the | 242 // management backend. Specifying this switch turns on managed policy from the |
| 243 // device management backend. | 243 // device management backend. |
| 244 const char kDeviceManagementUrl[] = "device-management-url"; | 244 const char kDeviceManagementUrl[] = "device-management-url"; |
| 245 | 245 |
| 246 // Triggers a plethora of diagnostic modes. | 246 // Triggers a plethora of diagnostic modes. |
| 247 const char kDiagnostics[] = "diagnostics"; | 247 const char kDiagnostics[] = "diagnostics"; |
| 248 | 248 |
| 249 // Sets the output format for diagnostic modes enabled by diagnostics flag. | 249 // Sets the output format for diagnostic modes enabled by diagnostics flag. |
| 250 const char kDiagnosticsFormat[] = "diagnostics-format"; | 250 const char kDiagnosticsFormat[] = "diagnostics-format"; |
| 251 | 251 |
| 252 // Tells the diagnostics mode to do the requested recovery step(s). |
| 253 const char kDiagnosticsRecovery[] = "diagnostics-recovery"; |
| 254 |
| 252 // If set, the app list will be disabled at startup. Note this doesn't prevent | 255 // If set, the app list will be disabled at startup. Note this doesn't prevent |
| 253 // the app list from running, it just makes Chrome think the app list hasn't | 256 // the app list from running, it just makes Chrome think the app list hasn't |
| 254 // been enabled (as in kEnableAppList) yet. | 257 // been enabled (as in kEnableAppList) yet. |
| 255 const char kDisableAppList[] = "disable-app-list"; | 258 const char kDisableAppList[] = "disable-app-list"; |
| 256 | 259 |
| 257 // Disables the experimental asynchronous DNS client. | 260 // Disables the experimental asynchronous DNS client. |
| 258 const char kDisableAsyncDns[] = "disable-async-dns"; | 261 const char kDisableAsyncDns[] = "disable-async-dns"; |
| 259 | 262 |
| 260 // Disables CNAME lookup of the host when generating the Kerberos SPN for a | 263 // Disables CNAME lookup of the host when generating the Kerberos SPN for a |
| 261 // Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN for more | 264 // Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN for more |
| (...skipping 1302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1564 | 1567 |
| 1565 // ----------------------------------------------------------------------------- | 1568 // ----------------------------------------------------------------------------- |
| 1566 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1569 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1567 // | 1570 // |
| 1568 // You were going to just dump your switches here, weren't you? Instead, please | 1571 // You were going to just dump your switches here, weren't you? Instead, please |
| 1569 // put them in alphabetical order above, or in order inside the appropriate | 1572 // put them in alphabetical order above, or in order inside the appropriate |
| 1570 // ifdef at the bottom. The order should match the header. | 1573 // ifdef at the bottom. The order should match the header. |
| 1571 // ----------------------------------------------------------------------------- | 1574 // ----------------------------------------------------------------------------- |
| 1572 | 1575 |
| 1573 } // namespace switches | 1576 } // namespace switches |
| OLD | NEW |