| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 // sync) login tokens to be used for auto-login in the Web Store (normally they | 63 // sync) login tokens to be used for auto-login in the Web Store (normally they |
| 64 // do not). | 64 // do not). |
| 65 const char kAppsGalleryReturnTokens[] = "apps-gallery-return-tokens"; | 65 const char kAppsGalleryReturnTokens[] = "apps-gallery-return-tokens"; |
| 66 | 66 |
| 67 // The URL to use for the gallery link in the app launcher. | 67 // The URL to use for the gallery link in the app launcher. |
| 68 const char kAppsGalleryURL[] = "apps-gallery-url"; | 68 const char kAppsGalleryURL[] = "apps-gallery-url"; |
| 69 | 69 |
| 70 // The update url used by gallery/webstore extensions. | 70 // The update url used by gallery/webstore extensions. |
| 71 const char kAppsGalleryUpdateURL[] = "apps-gallery-update-url"; | 71 const char kAppsGalleryUpdateURL[] = "apps-gallery-update-url"; |
| 72 | 72 |
| 73 // Whether to always use the new app install bubble when installing an app. |
| 74 const char kAppsNewInstallBubble[] = "apps-new-install-bubble"; |
| 75 |
| 73 // Disable throbber for extension apps. | 76 // Disable throbber for extension apps. |
| 74 const char kAppsNoThrob[] = "apps-no-throb"; | 77 const char kAppsNoThrob[] = "apps-no-throb"; |
| 75 | 78 |
| 76 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets | 79 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets |
| 77 // for. | 80 // for. |
| 78 const char kAuthNegotiateDelegateWhitelist[] = | 81 const char kAuthNegotiateDelegateWhitelist[] = |
| 79 "auth-negotiate-delegate-whitelist"; | 82 "auth-negotiate-delegate-whitelist"; |
| 80 | 83 |
| 81 // HTTP authentication schemes to enable. This is a comma separated list | 84 // HTTP authentication schemes to enable. This is a comma separated list |
| 82 // of authentication schemes (basic, digest, ntlm, and negotiate). By default | 85 // of authentication schemes (basic, digest, ntlm, and negotiate). By default |
| (...skipping 1157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1240 | 1243 |
| 1241 // ----------------------------------------------------------------------------- | 1244 // ----------------------------------------------------------------------------- |
| 1242 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1245 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1243 // | 1246 // |
| 1244 // You were going to just dump your switches here, weren't you? Instead, | 1247 // You were going to just dump your switches here, weren't you? Instead, |
| 1245 // please put them in alphabetical order above, or in order inside the | 1248 // please put them in alphabetical order above, or in order inside the |
| 1246 // appropriate ifdef at the bottom. The order should match the header. | 1249 // appropriate ifdef at the bottom. The order should match the header. |
| 1247 // ----------------------------------------------------------------------------- | 1250 // ----------------------------------------------------------------------------- |
| 1248 | 1251 |
| 1249 } // namespace switches | 1252 } // namespace switches |
| OLD | NEW |