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 #include "media/media_features.h" | 7 #include "media/media_features.h" |
8 | 8 |
9 namespace switches { | 9 namespace switches { |
10 | 10 |
(...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
438 // Enables testing features of the Plugin Placeholder. For internal use only. | 438 // Enables testing features of the Plugin Placeholder. For internal use only. |
439 const char kEnablePluginPlaceholderTesting[] = | 439 const char kEnablePluginPlaceholderTesting[] = |
440 "enable-plugin-placeholder-testing"; | 440 "enable-plugin-placeholder-testing"; |
441 | 441 |
442 // Make the values returned to window.performance.memory more granular and more | 442 // Make the values returned to window.performance.memory more granular and more |
443 // up to date in shared worker. Without this flag, the memory information is | 443 // up to date in shared worker. Without this flag, the memory information is |
444 // still available, but it is bucketized and updated less frequently. This flag | 444 // still available, but it is bucketized and updated less frequently. This flag |
445 // also applys to workers. | 445 // also applys to workers. |
446 const char kEnablePreciseMemoryInfo[] = "enable-precise-memory-info"; | 446 const char kEnablePreciseMemoryInfo[] = "enable-precise-memory-info"; |
447 | 447 |
| 448 // Enables PrintBrowser mode, in which everything renders as though printed. |
| 449 const char kEnablePrintBrowser[] = "enable-print-browser"; |
| 450 |
448 // Enables RGBA_4444 textures. | 451 // Enables RGBA_4444 textures. |
449 const char kEnableRGBA4444Textures[] = "enable-rgba-4444-textures"; | 452 const char kEnableRGBA4444Textures[] = "enable-rgba-4444-textures"; |
450 | 453 |
451 // Set options to cache V8 data. (off, preparse data, or code) | 454 // Set options to cache V8 data. (off, preparse data, or code) |
452 const char kV8CacheOptions[] = "v8-cache-options"; | 455 const char kV8CacheOptions[] = "v8-cache-options"; |
453 | 456 |
454 // Signals that the V8 natives file has been transfered to the child process | 457 // Signals that the V8 natives file has been transfered to the child process |
455 // by a file descriptor. | 458 // by a file descriptor. |
456 const char kV8NativesPassedByFD[] = "v8-natives-passed-by-fd"; | 459 const char kV8NativesPassedByFD[] = "v8-natives-passed-by-fd"; |
457 | 460 |
(...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1096 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1099 // the given directory. Used primarily to gather samples for IPC fuzzing. |
1097 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1100 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
1098 | 1101 |
1099 // Specifies the testcase used by the IPC fuzzer. | 1102 // Specifies the testcase used by the IPC fuzzer. |
1100 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1103 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
1101 #endif | 1104 #endif |
1102 | 1105 |
1103 // Don't dump stuff here, follow the same order as the header. | 1106 // Don't dump stuff here, follow the same order as the header. |
1104 | 1107 |
1105 } // namespace switches | 1108 } // namespace switches |
OLD | NEW |