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 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
466 const char kEnableGestureTapHighlight[] = "enable-gesture-tap-highlight"; | 466 const char kEnableGestureTapHighlight[] = "enable-gesture-tap-highlight"; |
467 | 467 |
468 // Enables TRACE for GL calls in the renderer. | 468 // Enables TRACE for GL calls in the renderer. |
469 const char kEnableGpuClientTracing[] = "enable-gpu-client-tracing"; | 469 const char kEnableGpuClientTracing[] = "enable-gpu-client-tracing"; |
470 | 470 |
471 // See comment for kEnableCompositingForFixedPosition. | 471 // See comment for kEnableCompositingForFixedPosition. |
472 const char kEnableHighDpiCompositingForFixedPosition[] = | 472 const char kEnableHighDpiCompositingForFixedPosition[] = |
473 "enable-high-dpi-fixed-position-compositing"; | 473 "enable-high-dpi-fixed-position-compositing"; |
474 | 474 |
475 #if defined(OS_WIN) | 475 #if defined(OS_WIN) |
| 476 // Disable the Legacy Window which corresponds to the size of the WebContents. |
| 477 const char kDisableLegacyIntermediateWindow[] = "disable-legacy-window"; |
| 478 |
476 // Enables the DirectWrite font rendering system on windows. | 479 // Enables the DirectWrite font rendering system on windows. |
477 const char kEnableDirectWrite[] = "enable-direct-write"; | 480 const char kEnableDirectWrite[] = "enable-direct-write"; |
478 | 481 |
479 // Use high resolution timers for TimeTicks. | 482 // Use high resolution timers for TimeTicks. |
480 const char kEnableHighResolutionTime[] = "enable-high-resolution-time"; | 483 const char kEnableHighResolutionTime[] = "enable-high-resolution-time"; |
481 #endif | 484 #endif |
482 | 485 |
483 // Enable HTML Imports | 486 // Enable HTML Imports |
484 extern const char kEnableHTMLImports[] = "enable-html-imports"; | 487 extern const char kEnableHTMLImports[] = "enable-html-imports"; |
485 | 488 |
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1059 #endif | 1062 #endif |
1060 | 1063 |
1061 #if defined(OS_POSIX) | 1064 #if defined(OS_POSIX) |
1062 // Causes the child processes to cleanly exit via calling exit(). | 1065 // Causes the child processes to cleanly exit via calling exit(). |
1063 const char kChildCleanExit[] = "child-clean-exit"; | 1066 const char kChildCleanExit[] = "child-clean-exit"; |
1064 #endif | 1067 #endif |
1065 | 1068 |
1066 // Don't dump stuff here, follow the same order as the header. | 1069 // Don't dump stuff here, follow the same order as the header. |
1067 | 1070 |
1068 } // namespace switches | 1071 } // namespace switches |
OLD | NEW |