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. |