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