| 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 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 514 "enable-repaint-after-layout"; | 514 "enable-repaint-after-layout"; |
| 515 | 515 |
| 516 // Enables targeted style recalculation optimizations. | 516 // Enables targeted style recalculation optimizations. |
| 517 const char kEnableTargetedStyleRecalc[] = | 517 const char kEnableTargetedStyleRecalc[] = |
| 518 "enable-targeted-style-recalc"; | 518 "enable-targeted-style-recalc"; |
| 519 | 519 |
| 520 // Cause the OS X sandbox write to syslog every time an access to a resource | 520 // Cause the OS X sandbox write to syslog every time an access to a resource |
| 521 // is denied by the sandbox. | 521 // is denied by the sandbox. |
| 522 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; | 522 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; |
| 523 | 523 |
| 524 // Enables seccomp-bpf support for Android. Requires experimental kernel |
| 525 // support. <http://crbug.com/166704> |
| 526 const char kEnableSeccompFilterSandbox[] = |
| 527 "enable-seccomp-filter-sandbox"; |
| 528 |
| 524 // Enables the Skia benchmarking extension | 529 // Enables the Skia benchmarking extension |
| 525 const char kEnableSkiaBenchmarking[] = "enable-skia-benchmarking"; | 530 const char kEnableSkiaBenchmarking[] = "enable-skia-benchmarking"; |
| 526 | 531 |
| 527 // On platforms that support it, enables smooth scroll animation. | 532 // On platforms that support it, enables smooth scroll animation. |
| 528 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling"; | 533 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling"; |
| 529 | 534 |
| 530 // Allow the compositor to use its software implementation if GL fails. | 535 // Allow the compositor to use its software implementation if GL fails. |
| 531 const char kEnableSoftwareCompositing[] = "enable-software-compositing"; | 536 const char kEnableSoftwareCompositing[] = "enable-software-compositing"; |
| 532 | 537 |
| 533 // Enable spatial navigation | 538 // Enable spatial navigation |
| (...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1030 | 1035 |
| 1031 // Disables support for Core Animation plugins. This is triggered when | 1036 // Disables support for Core Animation plugins. This is triggered when |
| 1032 // accelerated compositing is disabled. See http://crbug.com/122430 . | 1037 // accelerated compositing is disabled. See http://crbug.com/122430 . |
| 1033 const char kDisableCoreAnimationPlugins[] = | 1038 const char kDisableCoreAnimationPlugins[] = |
| 1034 "disable-core-animation-plugins"; | 1039 "disable-core-animation-plugins"; |
| 1035 #endif | 1040 #endif |
| 1036 | 1041 |
| 1037 // Don't dump stuff here, follow the same order as the header. | 1042 // Don't dump stuff here, follow the same order as the header. |
| 1038 | 1043 |
| 1039 } // namespace switches | 1044 } // namespace switches |
| OLD | NEW |