| 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 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 // Force logging to be enabled. Logging is disabled by default in release | 383 // Force logging to be enabled. Logging is disabled by default in release |
| 384 // builds. | 384 // builds. |
| 385 const char kEnableLogging[] = "enable-logging"; | 385 const char kEnableLogging[] = "enable-logging"; |
| 386 | 386 |
| 387 // Enables the memory benchmarking extension | 387 // Enables the memory benchmarking extension |
| 388 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking"; | 388 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking"; |
| 389 | 389 |
| 390 // Enables the network information API. | 390 // Enables the network information API. |
| 391 const char kEnableNetworkInformation[] = "enable-network-information"; | 391 const char kEnableNetworkInformation[] = "enable-network-information"; |
| 392 | 392 |
| 393 // Enables action button icons for the Web Notification API. | |
| 394 const char kEnableNotificationActionIcons[] = | |
| 395 "enable-notification-action-icons"; | |
| 396 | |
| 397 // Enables compositor-accelerated touch-screen pinch gestures. | 393 // Enables compositor-accelerated touch-screen pinch gestures. |
| 398 const char kEnablePinch[] = "enable-pinch"; | 394 const char kEnablePinch[] = "enable-pinch"; |
| 399 | 395 |
| 400 // Enables testing features of the Plugin Placeholder. For internal use only. | 396 // Enables testing features of the Plugin Placeholder. For internal use only. |
| 401 const char kEnablePluginPlaceholderTesting[] = | 397 const char kEnablePluginPlaceholderTesting[] = |
| 402 "enable-plugin-placeholder-testing"; | 398 "enable-plugin-placeholder-testing"; |
| 403 | 399 |
| 404 // Make the values returned to window.performance.memory more granular and more | 400 // Make the values returned to window.performance.memory more granular and more |
| 405 // up to date in shared worker. Without this flag, the memory information is | 401 // up to date in shared worker. Without this flag, the memory information is |
| 406 // still available, but it is bucketized and updated less frequently. This flag | 402 // still available, but it is bucketized and updated less frequently. This flag |
| (...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1017 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1013 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1018 | 1014 |
| 1019 // Enables the exporting of the tracing events to ETW. This is only supported on | 1015 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1020 // Windows Vista and later. | 1016 // Windows Vista and later. |
| 1021 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1017 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1022 #endif | 1018 #endif |
| 1023 | 1019 |
| 1024 // Don't dump stuff here, follow the same order as the header. | 1020 // Don't dump stuff here, follow the same order as the header. |
| 1025 | 1021 |
| 1026 } // namespace switches | 1022 } // namespace switches |
| OLD | NEW |