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