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 671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
682 | 682 |
683 // If accelerated compositing is supported, always enter compositing mode for | 683 // If accelerated compositing is supported, always enter compositing mode for |
684 // the base layer even when compositing is not strictly required. | 684 // the base layer even when compositing is not strictly required. |
685 const char kForceCompositingMode[] = "force-compositing-mode"; | 685 const char kForceCompositingMode[] = "force-compositing-mode"; |
686 | 686 |
687 // Specifies the backend server used for gaia authentications, like sync or | 687 // Specifies the backend server used for gaia authentications, like sync or |
688 // policies for example. The https:// prefix and the trailing slash should be | 688 // policies for example. The https:// prefix and the trailing slash should be |
689 // omitted. The default value is "www.google.com". | 689 // omitted. The default value is "www.google.com". |
690 const char kGaiaHost[] = "gaia-host"; | 690 const char kGaiaHost[] = "gaia-host"; |
691 | 691 |
| 692 // Enables using GAIA information to populate profile name and icon. |
| 693 const char kGaiaProfileInfo[] = "gaia-profile-info"; |
| 694 |
692 // Specifies a custom name for the GSSAPI library to load. | 695 // Specifies a custom name for the GSSAPI library to load. |
693 const char kGSSAPILibraryName[] = "gssapi-library-name"; | 696 const char kGSSAPILibraryName[] = "gssapi-library-name"; |
694 | 697 |
695 // These flags show the man page on Linux. They are equivalent to each | 698 // These flags show the man page on Linux. They are equivalent to each |
696 // other. | 699 // other. |
697 const char kHelp[] = "help"; | 700 const char kHelp[] = "help"; |
698 const char kHelpShort[] = "h"; | 701 const char kHelpShort[] = "h"; |
699 | 702 |
700 // Makes Windows happy by allowing it to show "Enable access to this program" | 703 // Makes Windows happy by allowing it to show "Enable access to this program" |
701 // checkbox in Add/Remove Programs->Set Program Access and Defaults. This only | 704 // checkbox in Add/Remove Programs->Set Program Access and Defaults. This only |
(...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1363 | 1366 |
1364 // ----------------------------------------------------------------------------- | 1367 // ----------------------------------------------------------------------------- |
1365 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1368 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1366 // | 1369 // |
1367 // You were going to just dump your switches here, weren't you? Instead, please | 1370 // You were going to just dump your switches here, weren't you? Instead, please |
1368 // put them in alphabetical order above, or in order inside the appropriate | 1371 // put them in alphabetical order above, or in order inside the appropriate |
1369 // ifdef at the bottom. The order should match the header. | 1372 // ifdef at the bottom. The order should match the header. |
1370 // ----------------------------------------------------------------------------- | 1373 // ----------------------------------------------------------------------------- |
1371 | 1374 |
1372 } // namespace switches | 1375 } // namespace switches |
OLD | NEW |