| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 // kEnableScriptsRequireAction. | 47 // kEnableScriptsRequireAction. |
| 48 const char kEnableExtensionActionRedesign[] = | 48 const char kEnableExtensionActionRedesign[] = |
| 49 "enable-extension-action-redesign"; | 49 "enable-extension-action-redesign"; |
| 50 | 50 |
| 51 // Enables extensions to hide bookmarks UI elements. | 51 // Enables extensions to hide bookmarks UI elements. |
| 52 const char kEnableOverrideBookmarksUI[] = "enable-override-bookmarks-ui"; | 52 const char kEnableOverrideBookmarksUI[] = "enable-override-bookmarks-ui"; |
| 53 | 53 |
| 54 // Enables tab for desktop sharing. | 54 // Enables tab for desktop sharing. |
| 55 const char kDisableTabForDesktopShare[] = "disable-tab-for-desktop-share"; | 55 const char kDisableTabForDesktopShare[] = "disable-tab-for-desktop-share"; |
| 56 | 56 |
| 57 // Disable new UI for desktop capture picker window. | |
| 58 const char kDisableDesktopCapturePickerNewUI[] = | |
| 59 "disable-desktop-capture-picker-new-ui"; | |
| 60 | |
| 61 // Allows the ErrorConsole to collect runtime and manifest errors, and display | 57 // Allows the ErrorConsole to collect runtime and manifest errors, and display |
| 62 // them in the chrome:extensions page. | 58 // them in the chrome:extensions page. |
| 63 const char kErrorConsole[] = "error-console"; | 59 const char kErrorConsole[] = "error-console"; |
| 64 | 60 |
| 65 // Whether to switch to extension action redesign mode (experimental). | 61 // Whether to switch to extension action redesign mode (experimental). |
| 66 const char kExtensionActionRedesign[] = "extension-action-redesign"; | 62 const char kExtensionActionRedesign[] = "extension-action-redesign"; |
| 67 | 63 |
| 68 // Marks a renderer as extension process. | 64 // Marks a renderer as extension process. |
| 69 const char kExtensionProcess[] = "extension-process"; | 65 const char kExtensionProcess[] = "extension-process"; |
| 70 | 66 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 // Enables the use of C++-based extension bindings (instead of JS generation). | 109 // Enables the use of C++-based extension bindings (instead of JS generation). |
| 114 const char kNativeCrxBindings[] = "native-crx-bindings"; | 110 const char kNativeCrxBindings[] = "native-crx-bindings"; |
| 115 | 111 |
| 116 // Enable package hash check: the .crx file sha256 hash sum should be equal to | 112 // Enable package hash check: the .crx file sha256 hash sum should be equal to |
| 117 // the one received from update manifest. | 113 // the one received from update manifest. |
| 118 const char kEnableCrxHashCheck[] = "enable-crx-hash-check"; | 114 const char kEnableCrxHashCheck[] = "enable-crx-hash-check"; |
| 119 | 115 |
| 120 } // namespace switches | 116 } // namespace switches |
| 121 | 117 |
| 122 } // namespace extensions | 118 } // namespace extensions |
| OLD | NEW |