| 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 "build/build_config.h" | 5 #include "build/build_config.h" |
| 6 #include "content/public/common/content_switches.h" | 6 #include "content/public/common/content_switches.h" |
| 7 | 7 |
| 8 namespace switches { | 8 namespace switches { |
| 9 | 9 |
| 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 // tiles may be displayed during fast scrolls especially on slower devices. | 374 // tiles may be displayed during fast scrolls especially on slower devices. |
| 375 const char kEnableLowResTiling[] = "enable-low-res-tiling"; | 375 const char kEnableLowResTiling[] = "enable-low-res-tiling"; |
| 376 | 376 |
| 377 // Dynamically apply color profiles to web content images. | 377 // Dynamically apply color profiles to web content images. |
| 378 const char kEnableImageColorProfiles[] = "enable-image-color-profiles"; | 378 const char kEnableImageColorProfiles[] = "enable-image-color-profiles"; |
| 379 | 379 |
| 380 // Force logging to be enabled. Logging is disabled by default in release | 380 // Force logging to be enabled. Logging is disabled by default in release |
| 381 // builds. | 381 // builds. |
| 382 const char kEnableLogging[] = "enable-logging"; | 382 const char kEnableLogging[] = "enable-logging"; |
| 383 | 383 |
| 384 // Enables the download button on the media document. |
| 385 const char kEnableMediaDocumentDownloadButton[] = |
| 386 "enable-media-document-download-button"; |
| 387 |
| 384 // Enables the memory benchmarking extension | 388 // Enables the memory benchmarking extension |
| 385 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking"; | 389 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking"; |
| 386 | 390 |
| 387 // Enables the network information API. | 391 // Enables the network information API. |
| 388 const char kEnableNetworkInformation[] = "enable-network-information"; | 392 const char kEnableNetworkInformation[] = "enable-network-information"; |
| 389 | 393 |
| 390 // Enables action button icons for the Web Notification API. | 394 // Enables action button icons for the Web Notification API. |
| 391 const char kEnableNotificationActionIcons[] = | 395 const char kEnableNotificationActionIcons[] = |
| 392 "enable-notification-action-icons"; | 396 "enable-notification-action-icons"; |
| 393 | 397 |
| (...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1045 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1049 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1046 | 1050 |
| 1047 // Enables the exporting of the tracing events to ETW. This is only supported on | 1051 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1048 // Windows Vista and later. | 1052 // Windows Vista and later. |
| 1049 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1053 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1050 #endif | 1054 #endif |
| 1051 | 1055 |
| 1052 // Don't dump stuff here, follow the same order as the header. | 1056 // Don't dump stuff here, follow the same order as the header. |
| 1053 | 1057 |
| 1054 } // namespace switches | 1058 } // namespace switches |
| OLD | NEW |