| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 // some private APIs. | 68 // some private APIs. |
| 69 const char kAppsCheckoutURL[] = "apps-checkout-url"; | 69 const char kAppsCheckoutURL[] = "apps-checkout-url"; |
| 70 | 70 |
| 71 // Allows the webstorePrivate APIs to return browser (aka sync) login tokens to | 71 // Allows the webstorePrivate APIs to return browser (aka sync) login tokens to |
| 72 // be used for auto-login in the Web Store (normally they do not). | 72 // be used for auto-login in the Web Store (normally they do not). |
| 73 const char kAppsGalleryReturnTokens[] = "apps-gallery-return-tokens"; | 73 const char kAppsGalleryReturnTokens[] = "apps-gallery-return-tokens"; |
| 74 | 74 |
| 75 // The URL to use for the gallery link in the app launcher. | 75 // The URL to use for the gallery link in the app launcher. |
| 76 const char kAppsGalleryURL[] = "apps-gallery-url"; | 76 const char kAppsGalleryURL[] = "apps-gallery-url"; |
| 77 | 77 |
| 78 // The URL that the webstore APIs download extensions from. |
| 79 // Note: the URL must contain one '%s' for the extension ID. |
| 80 const char kAppsGalleryDownloadURL[] = "apps-gallery-download-url"; |
| 81 |
| 78 // The update url used by gallery/webstore extensions. | 82 // The update url used by gallery/webstore extensions. |
| 79 const char kAppsGalleryUpdateURL[] = "apps-gallery-update-url"; | 83 const char kAppsGalleryUpdateURL[] = "apps-gallery-update-url"; |
| 80 | 84 |
| 81 // Whether to always use the new app install bubble when installing an app. | 85 // Whether to always use the new app install bubble when installing an app. |
| 82 const char kAppsNewInstallBubble[] = "apps-new-install-bubble"; | 86 const char kAppsNewInstallBubble[] = "apps-new-install-bubble"; |
| 83 | 87 |
| 84 // Disable throbber for extension apps. | 88 // Disable throbber for extension apps. |
| 85 const char kAppsNoThrob[] = "apps-no-throb"; | 89 const char kAppsNoThrob[] = "apps-no-throb"; |
| 86 | 90 |
| 87 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets | 91 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets |
| (...skipping 1203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1291 | 1295 |
| 1292 // ----------------------------------------------------------------------------- | 1296 // ----------------------------------------------------------------------------- |
| 1293 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1297 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1294 // | 1298 // |
| 1295 // You were going to just dump your switches here, weren't you? Instead, please | 1299 // You were going to just dump your switches here, weren't you? Instead, please |
| 1296 // put them in alphabetical order above, or in order inside the appropriate | 1300 // put them in alphabetical order above, or in order inside the appropriate |
| 1297 // ifdef at the bottom. The order should match the header. | 1301 // ifdef at the bottom. The order should match the header. |
| 1298 // ----------------------------------------------------------------------------- | 1302 // ----------------------------------------------------------------------------- |
| 1299 | 1303 |
| 1300 } // namespace switches | 1304 } // namespace switches |
| OLD | NEW |