| 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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 // mode (Windows Vista and up only). | 246 // mode (Windows Vista and up only). |
| 247 const char kDebugEnableFrameToggle[] = "debug-enable-frame-toggle"; | 247 const char kDebugEnableFrameToggle[] = "debug-enable-frame-toggle"; |
| 248 | 248 |
| 249 // Adds debugging entries such as Inspect Element to context menus of packed | 249 // Adds debugging entries such as Inspect Element to context menus of packed |
| 250 // apps. | 250 // apps. |
| 251 const char kDebugPackedApps[] = "debug-packed-apps"; | 251 const char kDebugPackedApps[] = "debug-packed-apps"; |
| 252 | 252 |
| 253 // Enables support to debug printing subsystem. | 253 // Enables support to debug printing subsystem. |
| 254 const char kDebugPrint[] = "debug-print"; | 254 const char kDebugPrint[] = "debug-print"; |
| 255 | 255 |
| 256 // Specifies the URL at which to fetch configuration policy from the device | |
| 257 // management backend. Specifying this switch turns on managed policy from the | |
| 258 // device management backend. | |
| 259 const char kDeviceManagementUrl[] = "device-management-url"; | |
| 260 | |
| 261 // Triggers a plethora of diagnostic modes. | 256 // Triggers a plethora of diagnostic modes. |
| 262 const char kDiagnostics[] = "diagnostics"; | 257 const char kDiagnostics[] = "diagnostics"; |
| 263 | 258 |
| 264 // Sets the output format for diagnostic modes enabled by diagnostics flag. | 259 // Sets the output format for diagnostic modes enabled by diagnostics flag. |
| 265 const char kDiagnosticsFormat[] = "diagnostics-format"; | 260 const char kDiagnosticsFormat[] = "diagnostics-format"; |
| 266 | 261 |
| 267 // Tells the diagnostics mode to do the requested recovery step(s). | 262 // Tells the diagnostics mode to do the requested recovery step(s). |
| 268 const char kDiagnosticsRecovery[] = "diagnostics-recovery"; | 263 const char kDiagnosticsRecovery[] = "diagnostics-recovery"; |
| 269 | 264 |
| 270 // Disables the experimental asynchronous DNS client. | 265 // Disables the experimental asynchronous DNS client. |
| (...skipping 1406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1677 | 1672 |
| 1678 // ----------------------------------------------------------------------------- | 1673 // ----------------------------------------------------------------------------- |
| 1679 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1674 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1680 // | 1675 // |
| 1681 // You were going to just dump your switches here, weren't you? Instead, please | 1676 // You were going to just dump your switches here, weren't you? Instead, please |
| 1682 // put them in alphabetical order above, or in order inside the appropriate | 1677 // put them in alphabetical order above, or in order inside the appropriate |
| 1683 // ifdef at the bottom. The order should match the header. | 1678 // ifdef at the bottom. The order should match the header. |
| 1684 // ----------------------------------------------------------------------------- | 1679 // ----------------------------------------------------------------------------- |
| 1685 | 1680 |
| 1686 } // namespace switches | 1681 } // namespace switches |
| OLD | NEW |