| Index: Source/WebCore/rendering/style/RenderStyle.h
|
| diff --git a/Source/WebCore/rendering/style/RenderStyle.h b/Source/WebCore/rendering/style/RenderStyle.h
|
| index 9b0d36145dde1de027ff7100f5dedf3cddbc5c9f..5a1d7423f76e7799c0c1c7a989f2f832ace4ea18 100644
|
| --- a/Source/WebCore/rendering/style/RenderStyle.h
|
| +++ b/Source/WebCore/rendering/style/RenderStyle.h
|
| @@ -911,9 +911,7 @@ public:
|
|
|
| LineBoxContain lineBoxContain() const { return rareInheritedData->m_lineBoxContain; }
|
| const LineClampValue& lineClamp() const { return rareNonInheritedData->lineClamp; }
|
| -#if ENABLE(TOUCH_EVENTS)
|
| Color tapHighlightColor() const { return rareInheritedData->tapHighlightColor; }
|
| -#endif
|
| #if ENABLE(ACCELERATED_OVERFLOW_SCROLLING)
|
| bool useTouchOverflowScrolling() const { return rareInheritedData->useTouchOverflowScrolling; }
|
| #endif
|
| @@ -1374,9 +1372,7 @@ public:
|
|
|
| void setLineBoxContain(LineBoxContain c) { SET_VAR(rareInheritedData, m_lineBoxContain, c); }
|
| void setLineClamp(LineClampValue c) { SET_VAR(rareNonInheritedData, lineClamp, c); }
|
| -#if ENABLE(TOUCH_EVENTS)
|
| void setTapHighlightColor(const Color& c) { SET_VAR(rareInheritedData, tapHighlightColor, c); }
|
| -#endif
|
| #if ENABLE(ACCELERATED_OVERFLOW_SCROLLING)
|
| void setUseTouchOverflowScrolling(bool v) { SET_VAR(rareInheritedData, useTouchOverflowScrolling, v); }
|
| #endif
|
| @@ -1696,9 +1692,7 @@ public:
|
| // Keep these at the end.
|
| static LineClampValue initialLineClamp() { return LineClampValue(); }
|
| static ETextSecurity initialTextSecurity() { return TSNONE; }
|
| -#if ENABLE(TOUCH_EVENTS)
|
| static Color initialTapHighlightColor();
|
| -#endif
|
| #if ENABLE(ACCELERATED_OVERFLOW_SCROLLING)
|
| static bool initialUseTouchOverflowScrolling() { return false; }
|
| #endif
|
|
|