OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 const char kAppId[] = "app-id"; | 52 const char kAppId[] = "app-id"; |
53 | 53 |
54 // Specifying this flag allows the webstorePrivate APIs to return browser (aka | 54 // Specifying this flag allows the webstorePrivate APIs to return browser (aka |
55 // sync) login tokens to be used for auto-login in the Web Store (normally they | 55 // sync) login tokens to be used for auto-login in the Web Store (normally they |
56 // do not). | 56 // do not). |
57 const char kAppsGalleryReturnTokens[] = "apps-gallery-return-tokens"; | 57 const char kAppsGalleryReturnTokens[] = "apps-gallery-return-tokens"; |
58 | 58 |
59 // The URL to use for the gallery link in the app launcher. | 59 // The URL to use for the gallery link in the app launcher. |
60 const char kAppsGalleryURL[] = "apps-gallery-url"; | 60 const char kAppsGalleryURL[] = "apps-gallery-url"; |
61 | 61 |
| 62 // The update url used by gallery/webstore extensions. |
62 const char kAppsGalleryUpdateURL[] = "apps-gallery-update-url"; | 63 const char kAppsGalleryUpdateURL[] = "apps-gallery-update-url"; |
63 | 64 |
64 // Disable throbber for extension apps. | 65 // Disable throbber for extension apps. |
65 const char kAppsNoThrob[] = "apps-no-throb"; | 66 const char kAppsNoThrob[] = "apps-no-throb"; |
66 | 67 |
67 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets | 68 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets |
68 // for. | 69 // for. |
69 const char kAuthNegotiateDelegateWhitelist[] = | 70 const char kAuthNegotiateDelegateWhitelist[] = |
70 "auth-negotiate-delegate-whitelist"; | 71 "auth-negotiate-delegate-whitelist"; |
71 | 72 |
(...skipping 1288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1360 | 1361 |
1361 // ----------------------------------------------------------------------------- | 1362 // ----------------------------------------------------------------------------- |
1362 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1363 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1363 // | 1364 // |
1364 // You were going to just dump your switches here, weren't you? Instead, | 1365 // You were going to just dump your switches here, weren't you? Instead, |
1365 // please put them in alphabetical order above, or in order inside the | 1366 // please put them in alphabetical order above, or in order inside the |
1366 // appropriate ifdef at the bottom. The order should match the header. | 1367 // appropriate ifdef at the bottom. The order should match the header. |
1367 // ----------------------------------------------------------------------------- | 1368 // ----------------------------------------------------------------------------- |
1368 | 1369 |
1369 } // namespace switches | 1370 } // namespace switches |
OLD | NEW |