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 "content/public/common/content_switches.h" | 5 #include "content/public/common/content_switches.h" |
6 | 6 |
7 namespace switches { | 7 namespace switches { |
8 | 8 |
9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
10 // have an effect. 0 disables MSAA. | 10 // have an effect. 0 disables MSAA. |
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
337 const char kDisableEncryptedMedia[] = "disable-encrypted-media"; | 337 const char kDisableEncryptedMedia[] = "disable-encrypted-media"; |
338 | 338 |
339 // Enable experimental canvas features, e.g. canvas 2D context attributes | 339 // Enable experimental canvas features, e.g. canvas 2D context attributes |
340 const char kEnableExperimentalCanvasFeatures[] = | 340 const char kEnableExperimentalCanvasFeatures[] = |
341 "enable-experimental-canvas-features"; | 341 "enable-experimental-canvas-features"; |
342 | 342 |
343 // Enables Web Platform features that are in development. | 343 // Enables Web Platform features that are in development. |
344 const char kEnableExperimentalWebPlatformFeatures[] = | 344 const char kEnableExperimentalWebPlatformFeatures[] = |
345 "enable-experimental-web-platform-features"; | 345 "enable-experimental-web-platform-features"; |
346 | 346 |
| 347 // Enable Web Bluetooth. |
| 348 const char kEnableWebBluetooth[] = "enable-web-bluetooth"; |
| 349 |
347 // Enables TRACE for GL calls in the renderer. | 350 // Enables TRACE for GL calls in the renderer. |
348 const char kEnableGpuClientTracing[] = "enable-gpu-client-tracing"; | 351 const char kEnableGpuClientTracing[] = "enable-gpu-client-tracing"; |
349 | 352 |
350 // Allow heuristics to determine when a layer tile should be drawn with the | 353 // Allow heuristics to determine when a layer tile should be drawn with the |
351 // Skia GPU backend. Only valid with GPU accelerated compositing + | 354 // Skia GPU backend. Only valid with GPU accelerated compositing + |
352 // impl-side painting. | 355 // impl-side painting. |
353 const char kEnableGpuRasterization[] = "enable-gpu-rasterization"; | 356 const char kEnableGpuRasterization[] = "enable-gpu-rasterization"; |
354 | 357 |
355 // When using CPU rasterizing generate low resolution tiling. Low res | 358 // When using CPU rasterizing generate low resolution tiling. Low res |
356 // tiles may be displayed during fast scrolls especially on slower devices. | 359 // tiles may be displayed during fast scrolls especially on slower devices. |
(...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1002 // Windows Vista and later. | 1005 // Windows Vista and later. |
1003 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1006 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
1004 #endif | 1007 #endif |
1005 | 1008 |
1006 // Enables the use of NPAPI plugins. | 1009 // Enables the use of NPAPI plugins. |
1007 const char kEnableNpapi[] = "enable-npapi"; | 1010 const char kEnableNpapi[] = "enable-npapi"; |
1008 | 1011 |
1009 // Don't dump stuff here, follow the same order as the header. | 1012 // Don't dump stuff here, follow the same order as the header. |
1010 | 1013 |
1011 } // namespace switches | 1014 } // namespace switches |
OLD | NEW |