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

Unified Diff: Source/web/WebSettingsImpl.h

Issue 309593007: Expand GPU rasterization trigger for Finch experiment (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Use a WebSetting Created 6 years, 6 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
« no previous file with comments | « no previous file | Source/web/WebSettingsImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebSettingsImpl.h
diff --git a/Source/web/WebSettingsImpl.h b/Source/web/WebSettingsImpl.h
index be06fa95d84f4b71083881ee823a4ed54d700610..45b0dfe38be34b55ca9228333a23c372f050bc92 100644
--- a/Source/web/WebSettingsImpl.h
+++ b/Source/web/WebSettingsImpl.h
@@ -157,6 +157,7 @@ public:
virtual void setUnifiedTextCheckerEnabled(bool) OVERRIDE;
virtual void setUnsafePluginPastingEnabled(bool) OVERRIDE;
virtual void setUsesEncodingDetector(bool) OVERRIDE;
+ virtual void setUseExpandedHeuristicsForGpuRasterization(bool) OVERRIDE;
virtual void setUseLegacyBackgroundSizeShorthandBehavior(bool) OVERRIDE;
virtual void setUseSolidColorScrollbars(bool) OVERRIDE;
virtual void setUseWideViewport(bool) OVERRIDE;
@@ -181,6 +182,7 @@ public:
bool doubleTapToZoomEnabled() const { return m_doubleTapToZoomEnabled; }
bool perTilePaintingEnabled() const { return m_perTilePaintingEnabled; }
bool supportDeprecatedTargetDensityDPI() const { return m_supportDeprecatedTargetDensityDPI; }
+ bool useExpandedHeuristicsForGpuRasterization() const { return m_useExpandedHeuristicsForGpuRasterization; }
bool viewportMetaLayoutSizeQuirk() const { return m_viewportMetaLayoutSizeQuirk; }
bool viewportMetaNonUserScalableQuirk() const { return m_viewportMetaNonUserScalableQuirk; }
bool clobberUserAgentInitialScaleQuirk() const { return m_clobberUserAgentInitialScaleQuirk; }
@@ -198,6 +200,7 @@ private:
bool m_perTilePaintingEnabled;
bool m_supportDeprecatedTargetDensityDPI;
bool m_shrinksViewportContentToFit;
+ bool m_useExpandedHeuristicsForGpuRasterization;
// This quirk is to maintain compatibility with Android apps built on
// the Android SDK prior to and including version 18. Presumably, this
// can be removed any time after 2015. See http://crbug.com/277369.
« no previous file with comments | « no previous file | Source/web/WebSettingsImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698