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 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
513 | 513 |
514 // Enables overlay scrollbars on Aura or Linux. Does nothing on Mac. | 514 // Enables overlay scrollbars on Aura or Linux. Does nothing on Mac. |
515 const char kEnableOverlayScrollbar[] = "enable-overlay-scrollbar"; | 515 const char kEnableOverlayScrollbar[] = "enable-overlay-scrollbar"; |
516 | 516 |
517 // Forward overscroll event data from the renderer to the browser. | 517 // Forward overscroll event data from the renderer to the browser. |
518 const char kEnableOverscrollNotifications[] = "enable-overscroll-notifications"; | 518 const char kEnableOverscrollNotifications[] = "enable-overscroll-notifications"; |
519 | 519 |
520 // Enables compositor-accelerated touch-screen pinch gestures. | 520 // Enables compositor-accelerated touch-screen pinch gestures. |
521 const char kEnablePinch[] = "enable-pinch"; | 521 const char kEnablePinch[] = "enable-pinch"; |
522 | 522 |
523 // Show pixel output for tests. | |
524 const char kEnablePixelOutputInTests[] = "enable-pixel-output-in-tests"; | |
525 | |
526 // Enable caching of pre-parsed JS script data. See http://crbug.com/32407. | 523 // Enable caching of pre-parsed JS script data. See http://crbug.com/32407. |
527 const char kEnablePreparsedJsCaching[] = "enable-preparsed-js-caching"; | 524 const char kEnablePreparsedJsCaching[] = "enable-preparsed-js-caching"; |
528 | 525 |
529 // Enable privileged WebGL extensions; without this switch such extensions are | 526 // Enable privileged WebGL extensions; without this switch such extensions are |
530 // available only to Chrome extensions. | 527 // available only to Chrome extensions. |
531 const char kEnablePrivilegedWebGLExtensions[] = | 528 const char kEnablePrivilegedWebGLExtensions[] = |
532 "enable-privileged-webgl-extensions"; | 529 "enable-privileged-webgl-extensions"; |
533 | 530 |
534 // Aggressively free GPU command buffers belonging to hidden tabs. | 531 // Aggressively free GPU command buffers belonging to hidden tabs. |
535 const char kEnablePruneGpuCommandBuffers[] = | 532 const char kEnablePruneGpuCommandBuffers[] = |
(...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1066 #endif | 1063 #endif |
1067 | 1064 |
1068 #if defined(OS_POSIX) | 1065 #if defined(OS_POSIX) |
1069 // Causes the child processes to cleanly exit via calling exit(). | 1066 // Causes the child processes to cleanly exit via calling exit(). |
1070 const char kChildCleanExit[] = "child-clean-exit"; | 1067 const char kChildCleanExit[] = "child-clean-exit"; |
1071 #endif | 1068 #endif |
1072 | 1069 |
1073 // Don't dump stuff here, follow the same order as the header. | 1070 // Don't dump stuff here, follow the same order as the header. |
1074 | 1071 |
1075 } // namespace switches | 1072 } // namespace switches |
OLD | NEW |