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