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 682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
693 | 693 |
694 // Forces the apps/webstore promo to be shown, independent of whether it has | 694 // Forces the apps/webstore promo to be shown, independent of whether it has |
695 // timed out, etc. Useful for testing. | 695 // timed out, etc. Useful for testing. |
696 const char kForceAppsPromoVisible[] = "force-apps-promo-visible"; | 696 const char kForceAppsPromoVisible[] = "force-apps-promo-visible"; |
697 | 697 |
698 // Specifies the backend server used for gaia authentications, like sync or | 698 // Specifies the backend server used for gaia authentications, like sync or |
699 // policies for example. The https:// prefix and the trailing slash should be | 699 // policies for example. The https:// prefix and the trailing slash should be |
700 // omitted. The default value is "www.google.com". | 700 // omitted. The default value is "www.google.com". |
701 const char kGaiaHost[] = "gaia-host"; | 701 const char kGaiaHost[] = "gaia-host"; |
702 | 702 |
| 703 // Specifies the path prefix for GAIA authentication URL. It should be used |
| 704 // for testing in cases where authentication path prefix differs from the one |
| 705 // used in production. |
| 706 const char kGaiaUrlPath[] = "gaia-url-path"; |
| 707 |
703 // Enables using GAIA information to populate profile name and icon. | 708 // Enables using GAIA information to populate profile name and icon. |
704 const char kGaiaProfileInfo[] = "gaia-profile-info"; | 709 const char kGaiaProfileInfo[] = "gaia-profile-info"; |
705 | 710 |
706 // Specifies an alternate URL to use for retrieving the search domain for | 711 // Specifies an alternate URL to use for retrieving the search domain for |
707 // Google. Useful for testing. | 712 // Google. Useful for testing. |
708 const char kGoogleSearchDomainCheckURL[] = "google-search-domain-check-url"; | 713 const char kGoogleSearchDomainCheckURL[] = "google-search-domain-check-url"; |
709 | 714 |
710 // Specifies a custom name for the GSSAPI library to load. | 715 // Specifies a custom name for the GSSAPI library to load. |
711 const char kGSSAPILibraryName[] = "gssapi-library-name"; | 716 const char kGSSAPILibraryName[] = "gssapi-library-name"; |
712 | 717 |
(...skipping 726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1439 | 1444 |
1440 // ----------------------------------------------------------------------------- | 1445 // ----------------------------------------------------------------------------- |
1441 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1446 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1442 // | 1447 // |
1443 // You were going to just dump your switches here, weren't you? Instead, please | 1448 // You were going to just dump your switches here, weren't you? Instead, please |
1444 // put them in alphabetical order above, or in order inside the appropriate | 1449 // put them in alphabetical order above, or in order inside the appropriate |
1445 // ifdef at the bottom. The order should match the header. | 1450 // ifdef at the bottom. The order should match the header. |
1446 // ----------------------------------------------------------------------------- | 1451 // ----------------------------------------------------------------------------- |
1447 | 1452 |
1448 } // namespace switches | 1453 } // namespace switches |
OLD | NEW |