| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "extensions/common/switches.h" | 5 #include "extensions/common/switches.h" |
| 6 | 6 |
| 7 namespace extensions { | 7 namespace extensions { |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| 11 // Allows non-https URL for background_page for hosted apps. | 11 // Allows non-https URL for background_page for hosted apps. |
| 12 const char kAllowHTTPBackgroundPage[] = "allow-http-background-page"; | 12 const char kAllowHTTPBackgroundPage[] = "allow-http-background-page"; |
| 13 | 13 |
| 14 // Allows the browser to load extensions that lack a modern manifest when that | 14 // Allows the browser to load extensions that lack a modern manifest when that |
| 15 // would otherwise be forbidden. | 15 // would otherwise be forbidden. |
| 16 const char kAllowLegacyExtensionManifests[] = | 16 const char kAllowLegacyExtensionManifests[] = |
| 17 "allow-legacy-extension-manifests"; | 17 "allow-legacy-extension-manifests"; |
| 18 | 18 |
| 19 // Disables the App Info dialog from being launched from the chrome://extensions |
| 20 // page (reverts to the old-style permissions dialog instead). |
| 21 const char kDisableExtensionInfoDialog[] = "disable-extension-info-dialog"; |
| 22 |
| 19 // Enables extension options to be embedded in chrome://extensions rather than | 23 // Enables extension options to be embedded in chrome://extensions rather than |
| 20 // a new tab. | 24 // a new tab. |
| 21 const char kEmbeddedExtensionOptions[] = "embedded-extension-options"; | 25 const char kEmbeddedExtensionOptions[] = "embedded-extension-options"; |
| 22 | 26 |
| 23 // Show apps windows after the first paint. Windows will be shown significantly | 27 // Show apps windows after the first paint. Windows will be shown significantly |
| 24 // later for heavy apps loading resources synchronously but it will be | 28 // later for heavy apps loading resources synchronously but it will be |
| 25 // insignificant for apps that load most of their resources asynchronously. | 29 // insignificant for apps that load most of their resources asynchronously. |
| 26 const char kEnableAppsShowOnFirstPaint[] = "enable-apps-show-on-first-paint"; | 30 const char kEnableAppsShowOnFirstPaint[] = "enable-apps-show-on-first-paint"; |
| 27 | 31 |
| 28 // Enables the <window-controls> tag in platform apps. | 32 // Enables the <window-controls> tag in platform apps. |
| 29 const char kEnableAppWindowControls[] = "enable-app-window-controls"; | 33 const char kEnableAppWindowControls[] = "enable-app-window-controls"; |
| 30 | 34 |
| 31 // Hack so that feature switch can work with about_flags. See | 35 // Hack so that feature switch can work with about_flags. See |
| 32 // kEnableScriptsRequireAction. | 36 // kEnableScriptsRequireAction. |
| 33 const char kEnableEmbeddedExtensionOptions[] = | 37 const char kEnableEmbeddedExtensionOptions[] = |
| 34 "enable-embedded-extension-options"; | 38 "enable-embedded-extension-options"; |
| 35 | 39 |
| 36 // Enables extension APIs that are in development. | 40 // Enables extension APIs that are in development. |
| 37 const char kEnableExperimentalExtensionApis[] = | 41 const char kEnableExperimentalExtensionApis[] = |
| 38 "enable-experimental-extension-apis"; | 42 "enable-experimental-extension-apis"; |
| 39 | 43 |
| 40 // Hack so that feature switch can work with about_flags. See | 44 // Hack so that feature switch can work with about_flags. See |
| 41 // kEnableScriptsRequireAction. | 45 // kEnableScriptsRequireAction. |
| 42 const char kEnableExtensionActionRedesign[] = | 46 const char kEnableExtensionActionRedesign[] = |
| 43 "enable-extension-action-redesign"; | 47 "enable-extension-action-redesign"; |
| 44 | 48 |
| 45 // Enables the App Info dialog to be launched from the chrome://extensions page. | |
| 46 const char kEnableExtensionInfoDialog[] = "enable-extension-info-dialog"; | |
| 47 | |
| 48 // Hack so that feature switch can work with about_flags. See | 49 // Hack so that feature switch can work with about_flags. See |
| 49 // kEnableScriptsRequireAction. | 50 // kEnableScriptsRequireAction. |
| 50 const char kEnableMimeHandlerView[] = "enable-mime-handler-view"; | 51 const char kEnableMimeHandlerView[] = "enable-mime-handler-view"; |
| 51 | 52 |
| 52 // Enables extensions to hide bookmarks UI elements. | 53 // Enables extensions to hide bookmarks UI elements. |
| 53 const char kEnableOverrideBookmarksUI[] = "enable-override-bookmarks-ui"; | 54 const char kEnableOverrideBookmarksUI[] = "enable-override-bookmarks-ui"; |
| 54 | 55 |
| 55 // Allows remote assistance connection to this computer using the Chrome Remote | 56 // Allows remote assistance connection to this computer using the Chrome Remote |
| 56 // Desktop app on Chrome OS. | 57 // Desktop app on Chrome OS. |
| 57 const char kEnableRemoteAssistance[] = "enable-remote-assistance"; | 58 const char kEnableRemoteAssistance[] = "enable-remote-assistance"; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 // Makes component extensions appear in chrome://settings/extensions. | 92 // Makes component extensions appear in chrome://settings/extensions. |
| 92 const char kShowComponentExtensionOptions[] = | 93 const char kShowComponentExtensionOptions[] = |
| 93 "show-component-extension-options"; | 94 "show-component-extension-options"; |
| 94 | 95 |
| 95 // Adds the given extension ID to all the permission whitelists. | 96 // Adds the given extension ID to all the permission whitelists. |
| 96 const char kWhitelistedExtensionID[] = "whitelisted-extension-id"; | 97 const char kWhitelistedExtensionID[] = "whitelisted-extension-id"; |
| 97 | 98 |
| 98 } // namespace switches | 99 } // namespace switches |
| 99 | 100 |
| 100 } // namespace extensions | 101 } // namespace extensions |
| OLD | NEW |