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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 | 95 |
96 // Value of OAuth2 refresh token for --force-app-mode. | 96 // Value of OAuth2 refresh token for --force-app-mode. |
97 const char kAppModeOAuth2Token[] = "app-mode-oauth-token"; | 97 const char kAppModeOAuth2Token[] = "app-mode-oauth-token"; |
98 | 98 |
99 // Whether to always use the new app install bubble when installing an app. | 99 // Whether to always use the new app install bubble when installing an app. |
100 const char kAppsNewInstallBubble[] = "apps-new-install-bubble"; | 100 const char kAppsNewInstallBubble[] = "apps-new-install-bubble"; |
101 | 101 |
102 // Disable throbber for extension apps. | 102 // Disable throbber for extension apps. |
103 const char kAppsNoThrob[] = "apps-no-throb"; | 103 const char kAppsNoThrob[] = "apps-no-throb"; |
104 | 104 |
| 105 // Helps test the apps promo by resetting the local state pref that prevents |
| 106 // it from being shown because it was dismissed. |
| 107 const char kResetShowAppsPromo[] = "reset-show-apps-promo"; |
| 108 |
105 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets | 109 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets |
106 // for. | 110 // for. |
107 const char kAuthNegotiateDelegateWhitelist[] = | 111 const char kAuthNegotiateDelegateWhitelist[] = |
108 "auth-negotiate-delegate-whitelist"; | 112 "auth-negotiate-delegate-whitelist"; |
109 | 113 |
110 // HTTP authentication schemes to enable. This is a comma-separated list of | 114 // HTTP authentication schemes to enable. This is a comma-separated list of |
111 // authentication schemes (basic, digest, ntlm, and negotiate). By default all | 115 // authentication schemes (basic, digest, ntlm, and negotiate). By default all |
112 // schemes are enabled. The primary use of this command line flag is to help | 116 // schemes are enabled. The primary use of this command line flag is to help |
113 // triage authentication-related issues reported by end-users. | 117 // triage authentication-related issues reported by end-users. |
114 const char kAuthSchemes[] = "auth-schemes"; | 118 const char kAuthSchemes[] = "auth-schemes"; |
(...skipping 1551 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1666 | 1670 |
1667 // ----------------------------------------------------------------------------- | 1671 // ----------------------------------------------------------------------------- |
1668 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1672 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1669 // | 1673 // |
1670 // You were going to just dump your switches here, weren't you? Instead, please | 1674 // You were going to just dump your switches here, weren't you? Instead, please |
1671 // put them in alphabetical order above, or in order inside the appropriate | 1675 // put them in alphabetical order above, or in order inside the appropriate |
1672 // ifdef at the bottom. The order should match the header. | 1676 // ifdef at the bottom. The order should match the header. |
1673 // ----------------------------------------------------------------------------- | 1677 // ----------------------------------------------------------------------------- |
1674 | 1678 |
1675 } // namespace switches | 1679 } // namespace switches |
OLD | NEW |