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

Unified Diff: content/public/common/content_features.cc

Issue 2654993004: Move GPU blacklist calculation to GPU proc (Closed)
Patch Set: cleanup Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: content/public/common/content_features.cc
diff --git a/content/public/common/content_features.cc b/content/public/common/content_features.cc
index 0fd44281b151ebeb12cc22fc5dcc1a23711aa362..8bf2d147cda76e469b0b8de0c1e660b00c157fdf 100644
--- a/content/public/common/content_features.cc
+++ b/content/public/common/content_features.cc
@@ -43,17 +43,6 @@ const base::Feature kCompositeOpaqueScrollers{"CompositeOpaqueScrollers",
const base::Feature kCredentialManagementAPI{"CredentialManagementAPI",
base::FEATURE_ENABLED_BY_DEFAULT};
-// Enable GPU Rasterization by default. This can still be overridden by
-// --force-gpu-rasterization or --disable-gpu-rasterization.
-#if defined(OS_ANDROID) || defined(OS_MACOSX)
-// DefaultEnableGpuRasterization has launched on Android and Mac.
-const base::Feature kDefaultEnableGpuRasterization{
- "DefaultEnableGpuRasterization", base::FEATURE_ENABLED_BY_DEFAULT};
-#else
-const base::Feature kDefaultEnableGpuRasterization{
- "DefaultEnableGpuRasterization", base::FEATURE_DISABLED_BY_DEFAULT};
-#endif
-
// Speculatively pre-evaluate Javascript which will likely use document.write to
// load an external script. The feature extracts the written markup and sends it
// to the preload scanner.

Powered by Google App Engine
This is Rietveld 408576698