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 // 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 memory benchmarking extension | 392 // Enables the memory benchmarking extension |
393 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking"; | 393 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking"; |
394 | 394 |
395 // Enable the Mojo shell connection in renderers. | |
396 const char kEnableMojoShellConnection[] = "enable-mojo-shell-connection"; | |
397 | |
398 // Enables the network information API. | 395 // Enables the network information API. |
399 const char kEnableNetworkInformation[] = "enable-network-information"; | 396 const char kEnableNetworkInformation[] = "enable-network-information"; |
400 | 397 |
401 // Enables action button icons for the Web Notification API. | 398 // Enables action button icons for the Web Notification API. |
402 const char kEnableNotificationActionIcons[] = | 399 const char kEnableNotificationActionIcons[] = |
403 "enable-notification-action-icons"; | 400 "enable-notification-action-icons"; |
404 | 401 |
405 // Enables partial raster. Enabling this switch also enables the use of | 402 // Enables partial raster. Enabling this switch also enables the use of |
406 // persistent gpu memory buffers. | 403 // persistent gpu memory buffers. |
407 const char kEnablePartialRaster[] = "enable-partial-raster"; | 404 const char kEnablePartialRaster[] = "enable-partial-raster"; |
(...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1050 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1047 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
1051 | 1048 |
1052 // Enables the exporting of the tracing events to ETW. This is only supported on | 1049 // Enables the exporting of the tracing events to ETW. This is only supported on |
1053 // Windows Vista and later. | 1050 // Windows Vista and later. |
1054 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1051 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
1055 #endif | 1052 #endif |
1056 | 1053 |
1057 // Don't dump stuff here, follow the same order as the header. | 1054 // Don't dump stuff here, follow the same order as the header. |
1058 | 1055 |
1059 } // namespace switches | 1056 } // namespace switches |
OLD | NEW |