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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 // Allows the webstorePrivate APIs to return browser (aka sync) login tokens to | 84 // Allows the webstorePrivate APIs to return browser (aka sync) login tokens to |
85 // be used for auto-login in the Web Store (normally they do not). | 85 // be used for auto-login in the Web Store (normally they do not). |
86 const char kAppsGalleryReturnTokens[] = "apps-gallery-return-tokens"; | 86 const char kAppsGalleryReturnTokens[] = "apps-gallery-return-tokens"; |
87 | 87 |
88 // The URL to use for the gallery link in the app launcher. | 88 // The URL to use for the gallery link in the app launcher. |
89 const char kAppsGalleryURL[] = "apps-gallery-url"; | 89 const char kAppsGalleryURL[] = "apps-gallery-url"; |
90 | 90 |
91 // The update url used by gallery/webstore extensions. | 91 // The update url used by gallery/webstore extensions. |
92 const char kAppsGalleryUpdateURL[] = "apps-gallery-update-url"; | 92 const char kAppsGalleryUpdateURL[] = "apps-gallery-update-url"; |
93 | 93 |
| 94 // Specifies the URL of an application manifest to retrieve. The user will be |
| 95 // prompted for consent and the application retrieved/installed if consented. |
| 96 const char kAppsInstallFromManifestURL[] = "apps-install-from-manifest-url"; |
| 97 |
94 // Whether to always use the new app install bubble when installing an app. | 98 // Whether to always use the new app install bubble when installing an app. |
95 const char kAppsNewInstallBubble[] = "apps-new-install-bubble"; | 99 const char kAppsNewInstallBubble[] = "apps-new-install-bubble"; |
96 | 100 |
97 // Disable throbber for extension apps. | 101 // Disable throbber for extension apps. |
98 const char kAppsNoThrob[] = "apps-no-throb"; | 102 const char kAppsNoThrob[] = "apps-no-throb"; |
99 | 103 |
100 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets | 104 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets |
101 // for. | 105 // for. |
102 const char kAuthNegotiateDelegateWhitelist[] = | 106 const char kAuthNegotiateDelegateWhitelist[] = |
103 "auth-negotiate-delegate-whitelist"; | 107 "auth-negotiate-delegate-whitelist"; |
(...skipping 1407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1511 | 1515 |
1512 // ----------------------------------------------------------------------------- | 1516 // ----------------------------------------------------------------------------- |
1513 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1517 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1514 // | 1518 // |
1515 // You were going to just dump your switches here, weren't you? Instead, please | 1519 // You were going to just dump your switches here, weren't you? Instead, please |
1516 // put them in alphabetical order above, or in order inside the appropriate | 1520 // put them in alphabetical order above, or in order inside the appropriate |
1517 // ifdef at the bottom. The order should match the header. | 1521 // ifdef at the bottom. The order should match the header. |
1518 // ----------------------------------------------------------------------------- | 1522 // ----------------------------------------------------------------------------- |
1519 | 1523 |
1520 } // namespace switches | 1524 } // namespace switches |
OLD | NEW |