Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(180)

Side by Side Diff: content/public/common/content_switches.cc

Issue 1757033002: CL for perf tryjob on mac (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 // Dumps extra logging about plugin loading to the log file. 61 // Dumps extra logging about plugin loading to the log file.
62 const char kDebugPluginLoading[] = "debug-plugin-loading"; 62 const char kDebugPluginLoading[] = "debug-plugin-loading";
63 63
64 // Sets the tile size used by composited layers. 64 // Sets the tile size used by composited layers.
65 const char kDefaultTileWidth[] = "default-tile-width"; 65 const char kDefaultTileWidth[] = "default-tile-width";
66 const char kDefaultTileHeight[] = "default-tile-height"; 66 const char kDefaultTileHeight[] = "default-tile-height";
67 67
68 // Disable antialiasing on 2d canvas. 68 // Disable antialiasing on 2d canvas.
69 const char kDisable2dCanvasAntialiasing[] = "disable-canvas-aa"; 69 const char kDisable2dCanvasAntialiasing[] = "disable-canvas-aa";
70 70
71 // Disables Canvas2D rendering into a scanout buffer for overlay support.
72 const char kDisable2dCanvasImageChromium[] = "disable-2d-canvas-image-chromium";
73
71 // Disables client-visible 3D APIs, in particular WebGL and Pepper 3D. 74 // Disables client-visible 3D APIs, in particular WebGL and Pepper 3D.
72 // This is controlled by policy and is kept separate from the other 75 // This is controlled by policy and is kept separate from the other
73 // enable/disable switches to avoid accidentally regressing the policy 76 // enable/disable switches to avoid accidentally regressing the policy
74 // support for controlling access to these APIs. 77 // support for controlling access to these APIs.
75 const char kDisable3DAPIs[] = "disable-3d-apis"; 78 const char kDisable3DAPIs[] = "disable-3d-apis";
76 79
77 // Disable gpu-accelerated 2d canvas. 80 // Disable gpu-accelerated 2d canvas.
78 const char kDisableAccelerated2dCanvas[] = "disable-accelerated-2d-canvas"; 81 const char kDisableAccelerated2dCanvas[] = "disable-accelerated-2d-canvas";
79 82
80 // Disable hardware acceleration of mjpeg decode for captured frame, where 83 // Disable hardware acceleration of mjpeg decode for captured frame, where
(...skipping 960 matching lines...) Expand 10 before | Expand all | Expand 10 after
1041 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; 1044 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb";
1042 1045
1043 // Enables the exporting of the tracing events to ETW. This is only supported on 1046 // Enables the exporting of the tracing events to ETW. This is only supported on
1044 // Windows Vista and later. 1047 // Windows Vista and later.
1045 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; 1048 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw";
1046 #endif 1049 #endif
1047 1050
1048 // Don't dump stuff here, follow the same order as the header. 1051 // Don't dump stuff here, follow the same order as the header.
1049 1052
1050 } // namespace switches 1053 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698