| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 const char kAlwaysAuthorizePlugins[] = "always-authorize-plugins"; | 53 const char kAlwaysAuthorizePlugins[] = "always-authorize-plugins"; |
| 54 | 54 |
| 55 // Specifies that the associated value should be launched in "application" | 55 // Specifies that the associated value should be launched in "application" |
| 56 // mode. | 56 // mode. |
| 57 const char kApp[] = "app"; | 57 const char kApp[] = "app"; |
| 58 | 58 |
| 59 // Specifies that the extension-app with the specified id should be launched | 59 // Specifies that the extension-app with the specified id should be launched |
| 60 // according to its configuration. | 60 // according to its configuration. |
| 61 const char kAppId[] = "app-id"; | 61 const char kAppId[] = "app-id"; |
| 62 | 62 |
| 63 // A URL for the server which assigns channel ids for server pushed app |
| 64 // notifications. |
| 65 const char kAppNotifyChannelServerURL[] = "app-notify-channel-server-url"; |
| 66 |
| 63 // Overrides the apps checkout URL, which is used to determine when to expose | 67 // Overrides the apps checkout URL, which is used to determine when to expose |
| 64 // some private APIs. | 68 // some private APIs. |
| 65 const char kAppsCheckoutURL[] = "apps-checkout-url"; | 69 const char kAppsCheckoutURL[] = "apps-checkout-url"; |
| 66 | 70 |
| 67 // 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 |
| 68 // 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). |
| 69 const char kAppsGalleryReturnTokens[] = "apps-gallery-return-tokens"; | 73 const char kAppsGalleryReturnTokens[] = "apps-gallery-return-tokens"; |
| 70 | 74 |
| 71 // 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. |
| 72 const char kAppsGalleryURL[] = "apps-gallery-url"; | 76 const char kAppsGalleryURL[] = "apps-gallery-url"; |
| (...skipping 1220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1293 | 1297 |
| 1294 // ----------------------------------------------------------------------------- | 1298 // ----------------------------------------------------------------------------- |
| 1295 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1299 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1296 // | 1300 // |
| 1297 // You were going to just dump your switches here, weren't you? Instead, please | 1301 // You were going to just dump your switches here, weren't you? Instead, please |
| 1298 // put them in alphabetical order above, or in order inside the appropriate | 1302 // put them in alphabetical order above, or in order inside the appropriate |
| 1299 // ifdef at the bottom. The order should match the header. | 1303 // ifdef at the bottom. The order should match the header. |
| 1300 // ----------------------------------------------------------------------------- | 1304 // ----------------------------------------------------------------------------- |
| 1301 | 1305 |
| 1302 } // namespace switches | 1306 } // namespace switches |
| OLD | NEW |