| 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 621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 632 // Extra command line options for launching the GPU process (normally used | 632 // Extra command line options for launching the GPU process (normally used |
| 633 // for debugging). Use like renderer-cmd-prefix. | 633 // for debugging). Use like renderer-cmd-prefix. |
| 634 const char kGpuLauncher[] = "gpu-launcher"; | 634 const char kGpuLauncher[] = "gpu-launcher"; |
| 635 | 635 |
| 636 // Makes this process a GPU sub-process. | 636 // Makes this process a GPU sub-process. |
| 637 const char kGpuProcess[] = "gpu-process"; | 637 const char kGpuProcess[] = "gpu-process"; |
| 638 | 638 |
| 639 // Causes the GPU process to display a dialog on launch. | 639 // Causes the GPU process to display a dialog on launch. |
| 640 const char kGpuStartupDialog[] = "gpu-startup-dialog"; | 640 const char kGpuStartupDialog[] = "gpu-startup-dialog"; |
| 641 | 641 |
| 642 // Specifies a custom name for the GSSAPI library to load. |
| 643 const char kGSSAPILibraryName[] = "gssapi-library-name"; |
| 644 |
| 642 // These flags show the man page on Linux. They are equivalent to each | 645 // These flags show the man page on Linux. They are equivalent to each |
| 643 // other. | 646 // other. |
| 644 const char kHelp[] = "help"; | 647 const char kHelp[] = "help"; |
| 645 const char kHelpShort[] = "h"; | 648 const char kHelpShort[] = "h"; |
| 646 | 649 |
| 647 // Make Windows happy by allowing it to show "Enable access to this program" | 650 // Make Windows happy by allowing it to show "Enable access to this program" |
| 648 // checkbox in Add/Remove Programs->Set Program Access and Defaults. This | 651 // checkbox in Add/Remove Programs->Set Program Access and Defaults. This |
| 649 // only shows an error box because the only way to hide Chrome is by | 652 // only shows an error box because the only way to hide Chrome is by |
| 650 // uninstalling it. | 653 // uninstalling it. |
| 651 const char kHideIcons[] = "hide-icons"; | 654 const char kHideIcons[] = "hide-icons"; |
| (...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1317 | 1320 |
| 1318 // ----------------------------------------------------------------------------- | 1321 // ----------------------------------------------------------------------------- |
| 1319 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1322 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1320 // | 1323 // |
| 1321 // You were going to just dump your switches here, weren't you? Instead, | 1324 // You were going to just dump your switches here, weren't you? Instead, |
| 1322 // please put them in alphabetical order above, or in order inside the | 1325 // please put them in alphabetical order above, or in order inside the |
| 1323 // appropriate ifdef at the bottom. The order should match the header. | 1326 // appropriate ifdef at the bottom. The order should match the header. |
| 1324 // ----------------------------------------------------------------------------- | 1327 // ----------------------------------------------------------------------------- |
| 1325 | 1328 |
| 1326 } // namespace switches | 1329 } // namespace switches |
| OLD | NEW |