| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 // Enables the mojo implementation of the serial API. | 51 // Enables the mojo implementation of the serial API. |
| 52 const char kEnableMojoSerialService[] = "enable-mojo-serial-service"; | 52 const char kEnableMojoSerialService[] = "enable-mojo-serial-service"; |
| 53 | 53 |
| 54 // Enables extensions to hide bookmarks UI elements. | 54 // Enables extensions to hide bookmarks UI elements. |
| 55 const char kEnableOverrideBookmarksUI[] = "enable-override-bookmarks-ui"; | 55 const char kEnableOverrideBookmarksUI[] = "enable-override-bookmarks-ui"; |
| 56 | 56 |
| 57 // Enables tab for desktop sharing. | 57 // Enables tab for desktop sharing. |
| 58 const char kDisableTabForDesktopShare[] = "disable-tab-for-desktop-share"; | 58 const char kDisableTabForDesktopShare[] = "disable-tab-for-desktop-share"; |
| 59 const char kEnableTabForDesktopShare[] = "enable-tab-for-desktop-share"; | 59 const char kEnableTabForDesktopShare[] = "enable-tab-for-desktop-share"; |
| 60 | 60 |
| 61 // Disable old UI for desktop capture picker window. | |
| 62 const char kDisableDesktopCapturePickerOldUI[] = | |
| 63 "disable-desktop-capture-picker-old-ui"; | |
| 64 | |
| 65 // Allows the ErrorConsole to collect runtime and manifest errors, and display | 61 // Allows the ErrorConsole to collect runtime and manifest errors, and display |
| 66 // them in the chrome:extensions page. | 62 // them in the chrome:extensions page. |
| 67 const char kErrorConsole[] = "error-console"; | 63 const char kErrorConsole[] = "error-console"; |
| 68 | 64 |
| 69 // Whether to switch to extension action redesign mode (experimental). | 65 // Whether to switch to extension action redesign mode (experimental). |
| 70 const char kExtensionActionRedesign[] = "extension-action-redesign"; | 66 const char kExtensionActionRedesign[] = "extension-action-redesign"; |
| 71 | 67 |
| 72 // Marks a renderer as extension process. | 68 // Marks a renderer as extension process. |
| 73 const char kExtensionProcess[] = "extension-process"; | 69 const char kExtensionProcess[] = "extension-process"; |
| 74 | 70 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 // Pass launch source to platform apps. | 110 // Pass launch source to platform apps. |
| 115 const char kTraceAppSource[] = "enable-trace-app-source"; | 111 const char kTraceAppSource[] = "enable-trace-app-source"; |
| 116 | 112 |
| 117 // Enable package hash check: the .crx file sha256 hash sum should be equal to | 113 // Enable package hash check: the .crx file sha256 hash sum should be equal to |
| 118 // the one received from update manifest. | 114 // the one received from update manifest. |
| 119 const char kEnableCrxHashCheck[] = "enable-crx-hash-check"; | 115 const char kEnableCrxHashCheck[] = "enable-crx-hash-check"; |
| 120 | 116 |
| 121 } // namespace switches | 117 } // namespace switches |
| 122 | 118 |
| 123 } // namespace extensions | 119 } // namespace extensions |
| OLD | NEW |