| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 612 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 623 // Extra command line options for launching the GPU process (normally used | 623 // Extra command line options for launching the GPU process (normally used |
| 624 // for debugging). Use like renderer-cmd-prefix. | 624 // for debugging). Use like renderer-cmd-prefix. |
| 625 const char kGpuLauncher[] = "gpu-launcher"; | 625 const char kGpuLauncher[] = "gpu-launcher"; |
| 626 | 626 |
| 627 // Makes this process a GPU sub-process. | 627 // Makes this process a GPU sub-process. |
| 628 const char kGpuProcess[] = "gpu-process"; | 628 const char kGpuProcess[] = "gpu-process"; |
| 629 | 629 |
| 630 // Causes the GPU process to display a dialog on launch. | 630 // Causes the GPU process to display a dialog on launch. |
| 631 const char kGpuStartupDialog[] = "gpu-startup-dialog"; | 631 const char kGpuStartupDialog[] = "gpu-startup-dialog"; |
| 632 | 632 |
| 633 // Specifies a custom name for the GSSAPI library to load. |
| 634 const char kGSSAPILibraryName[] = "gssapi-library-name"; |
| 635 |
| 633 // These flags show the man page on Linux. They are equivalent to each | 636 // These flags show the man page on Linux. They are equivalent to each |
| 634 // other. | 637 // other. |
| 635 const char kHelp[] = "help"; | 638 const char kHelp[] = "help"; |
| 636 const char kHelpShort[] = "h"; | 639 const char kHelpShort[] = "h"; |
| 637 | 640 |
| 638 // Make Windows happy by allowing it to show "Enable access to this program" | 641 // Make Windows happy by allowing it to show "Enable access to this program" |
| 639 // checkbox in Add/Remove Programs->Set Program Access and Defaults. This | 642 // checkbox in Add/Remove Programs->Set Program Access and Defaults. This |
| 640 // only shows an error box because the only way to hide Chrome is by | 643 // only shows an error box because the only way to hide Chrome is by |
| 641 // uninstalling it. | 644 // uninstalling it. |
| 642 const char kHideIcons[] = "hide-icons"; | 645 const char kHideIcons[] = "hide-icons"; |
| (...skipping 662 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1305 | 1308 |
| 1306 // ----------------------------------------------------------------------------- | 1309 // ----------------------------------------------------------------------------- |
| 1307 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1310 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1308 // | 1311 // |
| 1309 // You were going to just dump your switches here, weren't you? Instead, | 1312 // You were going to just dump your switches here, weren't you? Instead, |
| 1310 // please put them in alphabetical order above, or in order inside the | 1313 // please put them in alphabetical order above, or in order inside the |
| 1311 // appropriate ifdef at the bottom. The order should match the header. | 1314 // appropriate ifdef at the bottom. The order should match the header. |
| 1312 // ----------------------------------------------------------------------------- | 1315 // ----------------------------------------------------------------------------- |
| 1313 | 1316 |
| 1314 } // namespace switches | 1317 } // namespace switches |
| OLD | NEW |