| 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 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 // Enables the App Info dialog to be launched from the chrome://extensions page. | 55 // Enables the App Info dialog to be launched from the chrome://extensions page. |
| 56 const char kEnableExtensionInfoDialog[] = "enable-extension-info-dialog"; | 56 const char kEnableExtensionInfoDialog[] = "enable-extension-info-dialog"; |
| 57 | 57 |
| 58 // Hack so that feature switch can work with about_flags. See | 58 // Hack so that feature switch can work with about_flags. See |
| 59 // kEnableScriptsRequireAction. | 59 // kEnableScriptsRequireAction. |
| 60 const char kEnableMimeHandlerView[] = "enable-mime-handler-view"; | 60 const char kEnableMimeHandlerView[] = "enable-mime-handler-view"; |
| 61 | 61 |
| 62 // Enables extensions to hide bookmarks UI elements. | 62 // Enables extensions to hide bookmarks UI elements. |
| 63 const char kEnableOverrideBookmarksUI[] = "enable-override-bookmarks-ui"; | 63 const char kEnableOverrideBookmarksUI[] = "enable-override-bookmarks-ui"; |
| 64 | 64 |
| 65 // Allows remote assistance connection to this computer using the Chrome Remote |
| 66 // Desktop app on Chrome OS. |
| 67 const char kEnableRemoteAssistance[] = "enable-remote-assistance"; |
| 68 |
| 65 // Allows the ErrorConsole to collect runtime and manifest errors, and display | 69 // Allows the ErrorConsole to collect runtime and manifest errors, and display |
| 66 // them in the chrome:extensions page. | 70 // them in the chrome:extensions page. |
| 67 const char kErrorConsole[] = "error-console"; | 71 const char kErrorConsole[] = "error-console"; |
| 68 | 72 |
| 69 // Whether to switch to extension action redesign mode (experimental). | 73 // Whether to switch to extension action redesign mode (experimental). |
| 70 const char kExtensionActionRedesign[] = "extension-action-redesign"; | 74 const char kExtensionActionRedesign[] = "extension-action-redesign"; |
| 71 | 75 |
| 72 // Marks a renderer as extension process. | 76 // Marks a renderer as extension process. |
| 73 const char kExtensionProcess[] = "extension-process"; | 77 const char kExtensionProcess[] = "extension-process"; |
| 74 | 78 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 97 // Makes component extensions appear in chrome://settings/extensions. | 101 // Makes component extensions appear in chrome://settings/extensions. |
| 98 const char kShowComponentExtensionOptions[] = | 102 const char kShowComponentExtensionOptions[] = |
| 99 "show-component-extension-options"; | 103 "show-component-extension-options"; |
| 100 | 104 |
| 101 // Adds the given extension ID to all the permission whitelists. | 105 // Adds the given extension ID to all the permission whitelists. |
| 102 const char kWhitelistedExtensionID[] = "whitelisted-extension-id"; | 106 const char kWhitelistedExtensionID[] = "whitelisted-extension-id"; |
| 103 | 107 |
| 104 } // namespace switches | 108 } // namespace switches |
| 105 | 109 |
| 106 } // namespace extensions | 110 } // namespace extensions |
| OLD | NEW |