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 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
530 // support. <http://crbug.com/166704> | 530 // support. <http://crbug.com/166704> |
531 const char kEnableSeccompFilterSandbox[] = | 531 const char kEnableSeccompFilterSandbox[] = |
532 "enable-seccomp-filter-sandbox"; | 532 "enable-seccomp-filter-sandbox"; |
533 | 533 |
534 // Enables the Skia benchmarking extension | 534 // Enables the Skia benchmarking extension |
535 const char kEnableSkiaBenchmarking[] = "enable-skia-benchmarking"; | 535 const char kEnableSkiaBenchmarking[] = "enable-skia-benchmarking"; |
536 | 536 |
537 // On platforms that support it, enables smooth scroll animation. | 537 // On platforms that support it, enables smooth scroll animation. |
538 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling"; | 538 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling"; |
539 | 539 |
540 // Allow the compositor to use its software implementation if GL fails. | |
541 const char kEnableSoftwareCompositing[] = "enable-software-compositing"; | |
542 | |
543 // Enable spatial navigation | 540 // Enable spatial navigation |
544 const char kEnableSpatialNavigation[] = "enable-spatial-navigation"; | 541 const char kEnableSpatialNavigation[] = "enable-spatial-navigation"; |
545 | 542 |
546 // Enables the synthesis part of the Web Speech API. | 543 // Enables the synthesis part of the Web Speech API. |
547 const char kEnableSpeechSynthesis[] = "enable-speech-synthesis"; | 544 const char kEnableSpeechSynthesis[] = "enable-speech-synthesis"; |
548 | 545 |
549 // Enables StatsTable, logging statistics to a global named shared memory table. | 546 // Enables StatsTable, logging statistics to a global named shared memory table. |
550 const char kEnableStatsTable[] = "enable-stats-table"; | 547 const char kEnableStatsTable[] = "enable-stats-table"; |
551 | 548 |
552 // Experimentally ensures that each renderer process: | 549 // Experimentally ensures that each renderer process: |
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1040 | 1037 |
1041 // Disables support for Core Animation plugins. This is triggered when | 1038 // Disables support for Core Animation plugins. This is triggered when |
1042 // accelerated compositing is disabled. See http://crbug.com/122430 . | 1039 // accelerated compositing is disabled. See http://crbug.com/122430 . |
1043 const char kDisableCoreAnimationPlugins[] = | 1040 const char kDisableCoreAnimationPlugins[] = |
1044 "disable-core-animation-plugins"; | 1041 "disable-core-animation-plugins"; |
1045 #endif | 1042 #endif |
1046 | 1043 |
1047 // Don't dump stuff here, follow the same order as the header. | 1044 // Don't dump stuff here, follow the same order as the header. |
1048 | 1045 |
1049 } // namespace switches | 1046 } // namespace switches |
OLD | NEW |