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

Unified Diff: Source/core/rendering/style/StyleRareInheritedData.cpp

Issue 14773036: Remove ACCELERATED_OVERFLOW_SCROLLING as it is always off. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove ACCELERATED_OVERFLOW_SCROLLING as it is always off. Created 7 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 | « Source/core/rendering/style/StyleRareInheritedData.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/style/StyleRareInheritedData.cpp
diff --git a/Source/core/rendering/style/StyleRareInheritedData.cpp b/Source/core/rendering/style/StyleRareInheritedData.cpp
index bae67dad2f623a85fc5e3cb4cdb573beccb994bc..8b9eb661d8f82448d742e95c47b4abcdc52ae2bf 100644
--- a/Source/core/rendering/style/StyleRareInheritedData.cpp
+++ b/Source/core/rendering/style/StyleRareInheritedData.cpp
@@ -84,9 +84,6 @@ StyleRareInheritedData::StyleRareInheritedData()
, m_imageRendering(RenderStyle::initialImageRendering())
, m_lineSnap(RenderStyle::initialLineSnap())
, m_lineAlign(RenderStyle::initialLineAlign())
-#if ENABLE(ACCELERATED_OVERFLOW_SCROLLING)
- , useTouchOverflowScrolling(RenderStyle::initialUseTouchOverflowScrolling())
-#endif
#if ENABLE(CSS3_TEXT)
, m_textAlignLast(RenderStyle::initialTextAlignLast())
, m_textUnderlinePosition(RenderStyle::initialTextUnderlinePosition())
@@ -141,9 +138,6 @@ StyleRareInheritedData::StyleRareInheritedData(const StyleRareInheritedData& o)
, m_imageRendering(o.m_imageRendering)
, m_lineSnap(o.m_lineSnap)
, m_lineAlign(o.m_lineAlign)
-#if ENABLE(ACCELERATED_OVERFLOW_SCROLLING)
- , useTouchOverflowScrolling(o.useTouchOverflowScrolling)
-#endif
#if ENABLE(CSS3_TEXT)
, m_textAlignLast(o.m_textAlignLast)
, m_textUnderlinePosition(o.m_textUnderlinePosition)
@@ -199,9 +193,6 @@ bool StyleRareInheritedData::operator==(const StyleRareInheritedData& o) const
&& wordBreak == o.wordBreak
&& overflowWrap == o.overflowWrap
&& lineBreak == o.lineBreak
-#if ENABLE(ACCELERATED_OVERFLOW_SCROLLING)
- && useTouchOverflowScrolling == o.useTouchOverflowScrolling
-#endif
&& resize == o.resize
&& userSelect == o.userSelect
&& speak == o.speak
« no previous file with comments | « Source/core/rendering/style/StyleRareInheritedData.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698