| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "content/public/common/content_switches.h" | 5 #include "content/public/common/content_switches.h" |
| 6 | 6 |
| 7 namespace switches { | 7 namespace switches { |
| 8 | 8 |
| 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
| 10 // have an effect. 0 disables MSAA. | 10 // have an effect. 0 disables MSAA. |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 | 144 |
| 145 // Disables the deadline scheduler. | 145 // Disables the deadline scheduler. |
| 146 const char kDisableDeadlineScheduling[] = "disable-deadline-scheduling"; | 146 const char kDisableDeadlineScheduling[] = "disable-deadline-scheduling"; |
| 147 | 147 |
| 148 // Disables delegated renderer. | 148 // Disables delegated renderer. |
| 149 const char kDisableDelegatedRenderer[] = "disable-delegated-renderer"; | 149 const char kDisableDelegatedRenderer[] = "disable-delegated-renderer"; |
| 150 | 150 |
| 151 // Disables desktop notifications (default enabled on windows). | 151 // Disables desktop notifications (default enabled on windows). |
| 152 const char kDisableDesktopNotifications[] = "disable-desktop-notifications"; | 152 const char kDisableDesktopNotifications[] = "disable-desktop-notifications"; |
| 153 | 153 |
| 154 // Disables experimental navigator content utils implementation. |
| 155 const char kDisableNavigatorContentUtils[] = |
| 156 "disable-navigator-content-utils"; |
| 157 |
| 154 // Disable device motion events. | 158 // Disable device motion events. |
| 155 const char kDisableDeviceMotion[] = "disable-device-motion"; | 159 const char kDisableDeviceMotion[] = "disable-device-motion"; |
| 156 | 160 |
| 157 // Disable device orientation events. | 161 // Disable device orientation events. |
| 158 const char kDisableDeviceOrientation[] = "disable-device-orientation"; | 162 const char kDisableDeviceOrientation[] = "disable-device-orientation"; |
| 159 | 163 |
| 160 // Handles URL requests by NPAPI plugins through the renderer. | 164 // Handles URL requests by NPAPI plugins through the renderer. |
| 161 const char kDisableDirectNPAPIRequests[] = "disable-direct-npapi-requests"; | 165 const char kDisableDirectNPAPIRequests[] = "disable-direct-npapi-requests"; |
| 162 | 166 |
| 163 // Disable the per-domain blocking for 3D APIs after GPU reset. | 167 // Disable the per-domain blocking for 3D APIs after GPU reset. |
| (...skipping 862 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1026 #endif | 1030 #endif |
| 1027 | 1031 |
| 1028 #if defined(OS_POSIX) | 1032 #if defined(OS_POSIX) |
| 1029 // Causes the child processes to cleanly exit via calling exit(). | 1033 // Causes the child processes to cleanly exit via calling exit(). |
| 1030 const char kChildCleanExit[] = "child-clean-exit"; | 1034 const char kChildCleanExit[] = "child-clean-exit"; |
| 1031 #endif | 1035 #endif |
| 1032 | 1036 |
| 1033 // Don't dump stuff here, follow the same order as the header. | 1037 // Don't dump stuff here, follow the same order as the header. |
| 1034 | 1038 |
| 1035 } // namespace switches | 1039 } // namespace switches |
| OLD | NEW |