| 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 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 const char kV8NativesPassedByFD[] = "v8-natives-passed-by-fd"; | 404 const char kV8NativesPassedByFD[] = "v8-natives-passed-by-fd"; |
| 405 | 405 |
| 406 // Signals that the V8 startup snapshot file has been transfered to the child | 406 // Signals that the V8 startup snapshot file has been transfered to the child |
| 407 // process by a file descriptor. | 407 // process by a file descriptor. |
| 408 const char kV8SnapshotPassedByFD[] = "v8-snapshot-passed-by-fd"; | 408 const char kV8SnapshotPassedByFD[] = "v8-snapshot-passed-by-fd"; |
| 409 | 409 |
| 410 // Cause the OS X sandbox write to syslog every time an access to a resource | 410 // Cause the OS X sandbox write to syslog every time an access to a resource |
| 411 // is denied by the sandbox. | 411 // is denied by the sandbox. |
| 412 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; | 412 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; |
| 413 | 413 |
| 414 // Enables seccomp-bpf support for Android. Requires experimental kernel | |
| 415 // support. <http://crbug.com/166704> | |
| 416 const char kEnableSeccompFilterSandbox[] = | |
| 417 "enable-seccomp-filter-sandbox"; | |
| 418 | |
| 419 // Enables the Skia benchmarking extension | 414 // Enables the Skia benchmarking extension |
| 420 const char kEnableSkiaBenchmarking[] = "enable-skia-benchmarking"; | 415 const char kEnableSkiaBenchmarking[] = "enable-skia-benchmarking"; |
| 421 | 416 |
| 422 // Enables slimming paint phase 2: http://www.chromium.org/blink/slimming-paint | 417 // Enables slimming paint phase 2: http://www.chromium.org/blink/slimming-paint |
| 423 const char kEnableSlimmingPaintV2[] = "enable-slimming-paint-v2"; | 418 const char kEnableSlimmingPaintV2[] = "enable-slimming-paint-v2"; |
| 424 | 419 |
| 425 // On platforms that support it, enables smooth scroll animation. | 420 // On platforms that support it, enables smooth scroll animation. |
| 426 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling"; | 421 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling"; |
| 427 | 422 |
| 428 // Enable spatial navigation | 423 // Enable spatial navigation |
| (...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 971 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 966 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 972 | 967 |
| 973 // Enables the exporting of the tracing events to ETW. This is only supported on | 968 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 974 // Windows Vista and later. | 969 // Windows Vista and later. |
| 975 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 970 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 976 #endif | 971 #endif |
| 977 | 972 |
| 978 // Don't dump stuff here, follow the same order as the header. | 973 // Don't dump stuff here, follow the same order as the header. |
| 979 | 974 |
| 980 } // namespace switches | 975 } // namespace switches |
| OLD | NEW |