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