| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 635 | 635 |
| 636 // If accelerated compositing is supported, always enter compositing mode for | 636 // If accelerated compositing is supported, always enter compositing mode for |
| 637 // the base layer even when compositing is not strictly required. | 637 // the base layer even when compositing is not strictly required. |
| 638 const char kForceCompositingMode[] = "force-compositing-mode"; | 638 const char kForceCompositingMode[] = "force-compositing-mode"; |
| 639 | 639 |
| 640 // Specifies the backend server used for gaia authentications, like sync or | 640 // Specifies the backend server used for gaia authentications, like sync or |
| 641 // policies for example. The https:// prefix and the trailing slash should be | 641 // policies for example. The https:// prefix and the trailing slash should be |
| 642 // omitted. The default value is "www.google.com". | 642 // omitted. The default value is "www.google.com". |
| 643 const char kGaiaHost[] = "gaia-host"; | 643 const char kGaiaHost[] = "gaia-host"; |
| 644 | 644 |
| 645 // Enables using GAIA information to populate profile name and icon. | |
| 646 const char kGaiaProfileInfo[] = "gaia-profile-info"; | |
| 647 | |
| 648 // Specifies a custom name for the GSSAPI library to load. | 645 // Specifies a custom name for the GSSAPI library to load. |
| 649 const char kGSSAPILibraryName[] = "gssapi-library-name"; | 646 const char kGSSAPILibraryName[] = "gssapi-library-name"; |
| 650 | 647 |
| 651 // These flags show the man page on Linux. They are equivalent to each | 648 // These flags show the man page on Linux. They are equivalent to each |
| 652 // other. | 649 // other. |
| 653 const char kHelp[] = "help"; | 650 const char kHelp[] = "help"; |
| 654 const char kHelpShort[] = "h"; | 651 const char kHelpShort[] = "h"; |
| 655 | 652 |
| 656 // Makes Windows happy by allowing it to show "Enable access to this program" | 653 // Makes Windows happy by allowing it to show "Enable access to this program" |
| 657 // checkbox in Add/Remove Programs->Set Program Access and Defaults. This only | 654 // checkbox in Add/Remove Programs->Set Program Access and Defaults. This only |
| (...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1303 | 1300 |
| 1304 // ----------------------------------------------------------------------------- | 1301 // ----------------------------------------------------------------------------- |
| 1305 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1302 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1306 // | 1303 // |
| 1307 // You were going to just dump your switches here, weren't you? Instead, please | 1304 // You were going to just dump your switches here, weren't you? Instead, please |
| 1308 // put them in alphabetical order above, or in order inside the appropriate | 1305 // put them in alphabetical order above, or in order inside the appropriate |
| 1309 // ifdef at the bottom. The order should match the header. | 1306 // ifdef at the bottom. The order should match the header. |
| 1310 // ----------------------------------------------------------------------------- | 1307 // ----------------------------------------------------------------------------- |
| 1311 | 1308 |
| 1312 } // namespace switches | 1309 } // namespace switches |
| OLD | NEW |