Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 4560001: Support specifying the GSSAPI library that will be used. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: fix another compile error on Windows Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/policy_constants.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/policy_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698