| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 // cancelled. | 86 // cancelled. |
| 87 const char kAppsGalleryInstallAutoConfirmForTests[] = | 87 const char kAppsGalleryInstallAutoConfirmForTests[] = |
| 88 "apps-gallery-install-auto-confirm-for-tests"; | 88 "apps-gallery-install-auto-confirm-for-tests"; |
| 89 | 89 |
| 90 // The URL to use for the gallery link in the app launcher. | 90 // The URL to use for the gallery link in the app launcher. |
| 91 const char kAppsGalleryURL[] = "apps-gallery-url"; | 91 const char kAppsGalleryURL[] = "apps-gallery-url"; |
| 92 | 92 |
| 93 // The update url used by gallery/webstore extensions. | 93 // The update url used by gallery/webstore extensions. |
| 94 const char kAppsGalleryUpdateURL[] = "apps-gallery-update-url"; | 94 const char kAppsGalleryUpdateURL[] = "apps-gallery-update-url"; |
| 95 | 95 |
| 96 // Value of GAIA auth code for --force-app-mode. |
| 97 const char kAppModeAuthCode[] = "app-mode-auth-code"; |
| 98 |
| 96 // Value of OAuth2 refresh token for --force-app-mode. | 99 // Value of OAuth2 refresh token for --force-app-mode. |
| 97 const char kAppModeOAuth2Token[] = "app-mode-oauth-token"; | 100 const char kAppModeOAuth2Token[] = "app-mode-oauth-token"; |
| 98 | 101 |
| 99 // Whether to always use the new app install bubble when installing an app. | 102 // Whether to always use the new app install bubble when installing an app. |
| 100 const char kAppsNewInstallBubble[] = "apps-new-install-bubble"; | 103 const char kAppsNewInstallBubble[] = "apps-new-install-bubble"; |
| 101 | 104 |
| 102 // Disable throbber for extension apps. | 105 // Disable throbber for extension apps. |
| 103 const char kAppsNoThrob[] = "apps-no-throb"; | 106 const char kAppsNoThrob[] = "apps-no-throb"; |
| 104 | 107 |
| 105 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets | 108 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets |
| (...skipping 1581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1687 | 1690 |
| 1688 // ----------------------------------------------------------------------------- | 1691 // ----------------------------------------------------------------------------- |
| 1689 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1692 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1690 // | 1693 // |
| 1691 // You were going to just dump your switches here, weren't you? Instead, please | 1694 // You were going to just dump your switches here, weren't you? Instead, please |
| 1692 // put them in alphabetical order above, or in order inside the appropriate | 1695 // put them in alphabetical order above, or in order inside the appropriate |
| 1693 // ifdef at the bottom. The order should match the header. | 1696 // ifdef at the bottom. The order should match the header. |
| 1694 // ----------------------------------------------------------------------------- | 1697 // ----------------------------------------------------------------------------- |
| 1695 | 1698 |
| 1696 } // namespace switches | 1699 } // namespace switches |
| OLD | NEW |