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 "build/build_config.h" | 5 #include "build/build_config.h" |
6 #include "content/public/common/content_switches.h" | 6 #include "content/public/common/content_switches.h" |
7 | 7 |
8 namespace switches { | 8 namespace switches { |
9 | 9 |
10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 | 101 |
102 // Disable limits on the number of backing stores. Can prevent blinking for | 102 // Disable limits on the number of backing stores. Can prevent blinking for |
103 // users with many windows/tabs and lots of memory. | 103 // users with many windows/tabs and lots of memory. |
104 const char kDisableBackingStoreLimit[] = "disable-backing-store-limit"; | 104 const char kDisableBackingStoreLimit[] = "disable-backing-store-limit"; |
105 | 105 |
106 // Disable backgrounding renders for occluded windows. Done for tests to avoid | 106 // Disable backgrounding renders for occluded windows. Done for tests to avoid |
107 // nondeterministic behavior. | 107 // nondeterministic behavior. |
108 extern const char kDisableBackgroundingOccludedWindowsForTesting[] = | 108 extern const char kDisableBackgroundingOccludedWindowsForTesting[] = |
109 "disable-backgrounding-occluded-windows"; | 109 "disable-backgrounding-occluded-windows"; |
110 | 110 |
| 111 // Disable task throttling of timer tasks from background pages. |
| 112 const char kDisableBackgroundTimerThrottling[] = |
| 113 "disable-background-timer-throttling"; |
| 114 |
111 // Disable one or more Blink runtime-enabled features. | 115 // Disable one or more Blink runtime-enabled features. |
112 // Use names from RuntimeEnabledFeatures.in, separated by commas. | 116 // Use names from RuntimeEnabledFeatures.in, separated by commas. |
113 // Applied after kEnableBlinkFeatures, and after other flags that change these | 117 // Applied after kEnableBlinkFeatures, and after other flags that change these |
114 // features. | 118 // features. |
115 const char kDisableBlinkFeatures[] = "disable-blink-features"; | 119 const char kDisableBlinkFeatures[] = "disable-blink-features"; |
116 | 120 |
117 // Disables HTML5 DB support. | 121 // Disables HTML5 DB support. |
118 const char kDisableDatabases[] = "disable-databases"; | 122 const char kDisableDatabases[] = "disable-databases"; |
119 | 123 |
120 // Disable the per-domain blocking for 3D APIs after GPU reset. | 124 // Disable the per-domain blocking for 3D APIs after GPU reset. |
(...skipping 955 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1076 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1080 // the given directory. Used primarily to gather samples for IPC fuzzing. |
1077 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1081 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
1078 | 1082 |
1079 // Specifies the testcase used by the IPC fuzzer. | 1083 // Specifies the testcase used by the IPC fuzzer. |
1080 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1084 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
1081 #endif | 1085 #endif |
1082 | 1086 |
1083 // Don't dump stuff here, follow the same order as the header. | 1087 // Don't dump stuff here, follow the same order as the header. |
1084 | 1088 |
1085 } // namespace switches | 1089 } // namespace switches |
OLD | NEW |