| 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 namespace switches { | 7 namespace switches { |
| 8 | 8 |
| 9 // By default, file:// URIs cannot read other file:// URIs. This is an | 9 // By default, file:// URIs cannot read other file:// URIs. This is an |
| 10 // override for developers who need the old behavior for testing. | 10 // override for developers who need the old behavior for testing. |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 // Enables the GPU benchmarking extension | 392 // Enables the GPU benchmarking extension |
| 393 const char kEnableGpuBenchmarking[] = "enable-gpu-benchmarking"; | 393 const char kEnableGpuBenchmarking[] = "enable-gpu-benchmarking"; |
| 394 | 394 |
| 395 // Enables TRACE for GL calls in the renderer. | 395 // Enables TRACE for GL calls in the renderer. |
| 396 const char kEnableGpuClientTracing[] = "enable-gpu-client-tracing"; | 396 const char kEnableGpuClientTracing[] = "enable-gpu-client-tracing"; |
| 397 | 397 |
| 398 // See comment for kEnableCompositingForFixedPosition. | 398 // See comment for kEnableCompositingForFixedPosition. |
| 399 const char kEnableHighDpiCompositingForFixedPosition[] = | 399 const char kEnableHighDpiCompositingForFixedPosition[] = |
| 400 "enable-high-dpi-fixed-position-compositing"; | 400 "enable-high-dpi-fixed-position-compositing"; |
| 401 | 401 |
| 402 #if defined(OS_WIN) |
| 403 // Use high resolution timers for TimeTicks. |
| 404 const char kEnableHighResolutionTime[] = "enable-high-resolution-time"; |
| 405 #endif |
| 406 |
| 402 // Enable HTML Imports | 407 // Enable HTML Imports |
| 403 extern const char kEnableHTMLImports[] = "enable-html-imports"; | 408 extern const char kEnableHTMLImports[] = "enable-html-imports"; |
| 404 | 409 |
| 405 // Enables support for inband text tracks in media content. | 410 // Enables support for inband text tracks in media content. |
| 406 const char kEnableInbandTextTracks[] = "enable-inband-text-tracks"; | 411 const char kEnableInbandTextTracks[] = "enable-inband-text-tracks"; |
| 407 | 412 |
| 408 // Force logging to be enabled. Logging is disabled by default in release | 413 // Force logging to be enabled. Logging is disabled by default in release |
| 409 // builds. | 414 // builds. |
| 410 const char kEnableLogging[] = "enable-logging"; | 415 const char kEnableLogging[] = "enable-logging"; |
| 411 | 416 |
| (...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 923 #endif | 928 #endif |
| 924 | 929 |
| 925 #if defined(USE_AURA) | 930 #if defined(USE_AURA) |
| 926 // Forces usage of the test compositor. Needed to run ui tests on bots. | 931 // Forces usage of the test compositor. Needed to run ui tests on bots. |
| 927 extern const char kTestCompositor[] = "test-compositor"; | 932 extern const char kTestCompositor[] = "test-compositor"; |
| 928 #endif | 933 #endif |
| 929 | 934 |
| 930 // Don't dump stuff here, follow the same order as the header. | 935 // Don't dump stuff here, follow the same order as the header. |
| 931 | 936 |
| 932 } // namespace switches | 937 } // namespace switches |
| OLD | NEW |