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 "enable-extension-action-redesign"; | 49 "enable-extension-action-redesign"; |
50 | 50 |
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"; | |
60 | 59 |
61 // Disable old UI for desktop capture picker window. | 60 // Disable new UI for desktop capture picker window. |
62 const char kDisableDesktopCapturePickerOldUI[] = | 61 const char kDisableDesktopCapturePickerNewUI[] = |
63 "disable-desktop-capture-picker-old-ui"; | 62 "disable-desktop-capture-picker-new-ui"; |
64 | 63 |
65 // Allows the ErrorConsole to collect runtime and manifest errors, and display | 64 // Allows the ErrorConsole to collect runtime and manifest errors, and display |
66 // them in the chrome:extensions page. | 65 // them in the chrome:extensions page. |
67 const char kErrorConsole[] = "error-console"; | 66 const char kErrorConsole[] = "error-console"; |
68 | 67 |
69 // Whether to switch to extension action redesign mode (experimental). | 68 // Whether to switch to extension action redesign mode (experimental). |
70 const char kExtensionActionRedesign[] = "extension-action-redesign"; | 69 const char kExtensionActionRedesign[] = "extension-action-redesign"; |
71 | 70 |
72 // Marks a renderer as extension process. | 71 // Marks a renderer as extension process. |
73 const char kExtensionProcess[] = "extension-process"; | 72 const char kExtensionProcess[] = "extension-process"; |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 // Pass launch source to platform apps. | 113 // Pass launch source to platform apps. |
115 const char kTraceAppSource[] = "enable-trace-app-source"; | 114 const char kTraceAppSource[] = "enable-trace-app-source"; |
116 | 115 |
117 // Enable package hash check: the .crx file sha256 hash sum should be equal to | 116 // Enable package hash check: the .crx file sha256 hash sum should be equal to |
118 // the one received from update manifest. | 117 // the one received from update manifest. |
119 const char kEnableCrxHashCheck[] = "enable-crx-hash-check"; | 118 const char kEnableCrxHashCheck[] = "enable-crx-hash-check"; |
120 | 119 |
121 } // namespace switches | 120 } // namespace switches |
122 | 121 |
123 } // namespace extensions | 122 } // namespace extensions |
OLD | NEW |