| 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 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 const char kEnableMojoShellConnection[] = "enable-mojo-shell-connection"; | 396 const char kEnableMojoShellConnection[] = "enable-mojo-shell-connection"; |
| 397 | 397 |
| 398 // Enables the network information API. | 398 // Enables the network information API. |
| 399 const char kEnableNetworkInformation[] = "enable-network-information"; | 399 const char kEnableNetworkInformation[] = "enable-network-information"; |
| 400 | 400 |
| 401 // Enables non-validating reload on reload-to-refresh-content (e.g. pull- | 401 // Enables non-validating reload on reload-to-refresh-content (e.g. pull- |
| 402 // to-refresh). | 402 // to-refresh). |
| 403 const char kEnableNonValidatingReloadOnRefreshContent[] = | 403 const char kEnableNonValidatingReloadOnRefreshContent[] = |
| 404 "enable-non-validating-reload-on-refresh-content"; | 404 "enable-non-validating-reload-on-refresh-content"; |
| 405 | 405 |
| 406 // Enables action button icons for the Web Notification API. |
| 407 const char kEnableNotificationActionIcons[] = |
| 408 "enable-notification-action-icons"; |
| 409 |
| 406 // Enables partial raster. Enabling this switch also enables the use of | 410 // Enables partial raster. Enabling this switch also enables the use of |
| 407 // persistent gpu memory buffers. | 411 // persistent gpu memory buffers. |
| 408 const char kEnablePartialRaster[] = "enable-partial-raster"; | 412 const char kEnablePartialRaster[] = "enable-partial-raster"; |
| 409 | 413 |
| 410 // Enables compositor-accelerated touch-screen pinch gestures. | 414 // Enables compositor-accelerated touch-screen pinch gestures. |
| 411 const char kEnablePinch[] = "enable-pinch"; | 415 const char kEnablePinch[] = "enable-pinch"; |
| 412 | 416 |
| 413 // Enables testing features of the Plugin Placeholder. For internal use only. | 417 // Enables testing features of the Plugin Placeholder. For internal use only. |
| 414 const char kEnablePluginPlaceholderTesting[] = | 418 const char kEnablePluginPlaceholderTesting[] = |
| 415 "enable-plugin-placeholder-testing"; | 419 "enable-plugin-placeholder-testing"; |
| (...skipping 628 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 |