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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 const char kEnableExtensionActionRedesign[] = | 42 const char kEnableExtensionActionRedesign[] = |
43 "enable-extension-action-redesign"; | 43 "enable-extension-action-redesign"; |
44 | 44 |
45 // Enables the App Info dialog to be launched from the chrome://extensions page. | 45 // Enables the App Info dialog to be launched from the chrome://extensions page. |
46 const char kEnableExtensionInfoDialog[] = "enable-extension-info-dialog"; | 46 const char kEnableExtensionInfoDialog[] = "enable-extension-info-dialog"; |
47 | 47 |
48 // Hack so that feature switch can work with about_flags. See | 48 // Hack so that feature switch can work with about_flags. See |
49 // kEnableScriptsRequireAction. | 49 // kEnableScriptsRequireAction. |
50 const char kEnableMimeHandlerView[] = "enable-mime-handler-view"; | 50 const char kEnableMimeHandlerView[] = "enable-mime-handler-view"; |
51 | 51 |
| 52 // Enables the mojo implementation of the serial API. |
| 53 const char kEnableMojoSerialService[] = "enable-mojo-serial-service"; |
| 54 |
52 // Enables extensions to hide bookmarks UI elements. | 55 // Enables extensions to hide bookmarks UI elements. |
53 const char kEnableOverrideBookmarksUI[] = "enable-override-bookmarks-ui"; | 56 const char kEnableOverrideBookmarksUI[] = "enable-override-bookmarks-ui"; |
54 | 57 |
55 // Allows remote assistance connection to this computer using the Chrome Remote | 58 // Allows remote assistance connection to this computer using the Chrome Remote |
56 // Desktop app on Chrome OS. | 59 // Desktop app on Chrome OS. |
57 const char kEnableRemoteAssistance[] = "enable-remote-assistance"; | 60 const char kEnableRemoteAssistance[] = "enable-remote-assistance"; |
58 | 61 |
59 // Allows the ErrorConsole to collect runtime and manifest errors, and display | 62 // Allows the ErrorConsole to collect runtime and manifest errors, and display |
60 // them in the chrome:extensions page. | 63 // them in the chrome:extensions page. |
61 const char kErrorConsole[] = "error-console"; | 64 const char kErrorConsole[] = "error-console"; |
(...skipping 29 matching lines...) Expand all Loading... |
91 // Makes component extensions appear in chrome://settings/extensions. | 94 // Makes component extensions appear in chrome://settings/extensions. |
92 const char kShowComponentExtensionOptions[] = | 95 const char kShowComponentExtensionOptions[] = |
93 "show-component-extension-options"; | 96 "show-component-extension-options"; |
94 | 97 |
95 // Adds the given extension ID to all the permission whitelists. | 98 // Adds the given extension ID to all the permission whitelists. |
96 const char kWhitelistedExtensionID[] = "whitelisted-extension-id"; | 99 const char kWhitelistedExtensionID[] = "whitelisted-extension-id"; |
97 | 100 |
98 } // namespace switches | 101 } // namespace switches |
99 | 102 |
100 } // namespace extensions | 103 } // namespace extensions |
OLD | NEW |