| 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 607 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 618 // Extra command line options for launching the GPU process (normally used | 618 // Extra command line options for launching the GPU process (normally used |
| 619 // for debugging). Use like renderer-cmd-prefix. | 619 // for debugging). Use like renderer-cmd-prefix. |
| 620 const char kGpuLauncher[] = "gpu-launcher"; | 620 const char kGpuLauncher[] = "gpu-launcher"; |
| 621 | 621 |
| 622 // Makes this process a GPU sub-process. | 622 // Makes this process a GPU sub-process. |
| 623 const char kGpuProcess[] = "gpu-process"; | 623 const char kGpuProcess[] = "gpu-process"; |
| 624 | 624 |
| 625 // Causes the GPU process to display a dialog on launch. | 625 // Causes the GPU process to display a dialog on launch. |
| 626 const char kGpuStartupDialog[] = "gpu-startup-dialog"; | 626 const char kGpuStartupDialog[] = "gpu-startup-dialog"; |
| 627 | 627 |
| 628 // Specifies a custom name for the GSSAPI library to load. |
| 629 const char kGSSAPILibraryName[] = "gssapi-library-name"; |
| 630 |
| 628 // These flags show the man page on Linux. They are equivalent to each | 631 // These flags show the man page on Linux. They are equivalent to each |
| 629 // other. | 632 // other. |
| 630 const char kHelp[] = "help"; | 633 const char kHelp[] = "help"; |
| 631 const char kHelpShort[] = "h"; | 634 const char kHelpShort[] = "h"; |
| 632 | 635 |
| 633 // Make Windows happy by allowing it to show "Enable access to this program" | 636 // Make Windows happy by allowing it to show "Enable access to this program" |
| 634 // checkbox in Add/Remove Programs->Set Program Access and Defaults. This | 637 // checkbox in Add/Remove Programs->Set Program Access and Defaults. This |
| 635 // only shows an error box because the only way to hide Chrome is by | 638 // only shows an error box because the only way to hide Chrome is by |
| 636 // uninstalling it. | 639 // uninstalling it. |
| 637 const char kHideIcons[] = "hide-icons"; | 640 const char kHideIcons[] = "hide-icons"; |
| (...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1288 | 1291 |
| 1289 // ----------------------------------------------------------------------------- | 1292 // ----------------------------------------------------------------------------- |
| 1290 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1293 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1291 // | 1294 // |
| 1292 // You were going to just dump your switches here, weren't you? Instead, | 1295 // You were going to just dump your switches here, weren't you? Instead, |
| 1293 // please put them in alphabetical order above, or in order inside the | 1296 // please put them in alphabetical order above, or in order inside the |
| 1294 // appropriate ifdef at the bottom. The order should match the header. | 1297 // appropriate ifdef at the bottom. The order should match the header. |
| 1295 // ----------------------------------------------------------------------------- | 1298 // ----------------------------------------------------------------------------- |
| 1296 | 1299 |
| 1297 } // namespace switches | 1300 } // namespace switches |
| OLD | NEW |