| 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 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 // tiles may be displayed during fast scrolls especially on slower devices. | 382 // tiles may be displayed during fast scrolls especially on slower devices. |
| 383 const char kEnableLowResTiling[] = "enable-low-res-tiling"; | 383 const char kEnableLowResTiling[] = "enable-low-res-tiling"; |
| 384 | 384 |
| 385 // Dynamically apply color profiles to web content images. | 385 // Dynamically apply color profiles to web content images. |
| 386 const char kEnableImageColorProfiles[] = "enable-image-color-profiles"; | 386 const char kEnableImageColorProfiles[] = "enable-image-color-profiles"; |
| 387 | 387 |
| 388 // Force logging to be enabled. Logging is disabled by default in release | 388 // Force logging to be enabled. Logging is disabled by default in release |
| 389 // builds. | 389 // builds. |
| 390 const char kEnableLogging[] = "enable-logging"; | 390 const char kEnableLogging[] = "enable-logging"; |
| 391 | 391 |
| 392 // Enables the download button on the media document. |
| 393 const char kEnableMediaDocumentDownloadButton[] = |
| 394 "enable-media-document-download-button"; |
| 395 |
| 392 // Enables the memory benchmarking extension | 396 // Enables the memory benchmarking extension |
| 393 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking"; | 397 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking"; |
| 394 | 398 |
| 395 // Enables the network information API. | 399 // Enables the network information API. |
| 396 const char kEnableNetworkInformation[] = "enable-network-information"; | 400 const char kEnableNetworkInformation[] = "enable-network-information"; |
| 397 | 401 |
| 398 // Enables action button icons for the Web Notification API. | 402 // Enables action button icons for the Web Notification API. |
| 399 const char kEnableNotificationActionIcons[] = | 403 const char kEnableNotificationActionIcons[] = |
| 400 "enable-notification-action-icons"; | 404 "enable-notification-action-icons"; |
| 401 | 405 |
| (...skipping 636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1038 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1042 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1039 | 1043 |
| 1040 // Enables the exporting of the tracing events to ETW. This is only supported on | 1044 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1041 // Windows Vista and later. | 1045 // Windows Vista and later. |
| 1042 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1046 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1043 #endif | 1047 #endif |
| 1044 | 1048 |
| 1045 // Don't dump stuff here, follow the same order as the header. | 1049 // Don't dump stuff here, follow the same order as the header. |
| 1046 | 1050 |
| 1047 } // namespace switches | 1051 } // namespace switches |
| OLD | NEW |