| Index: third_party/WebKit/Source/core/style/ComputedStyle.h
|
| diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| index 3657eaeca0016eac571d8717aeaa9bbea953d144..b2b9235e0f4a410e9dcc6b5ad1861c25e0846c33 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| @@ -1227,13 +1227,6 @@ public:
|
| void setVerticalAlign(EVerticalAlign v) { m_nonInheritedData.m_verticalAlign = v; }
|
| void setVerticalAlignLength(const Length& length) { setVerticalAlign(VerticalAlignLength); SET_VAR(m_box, m_verticalAlign, length); }
|
|
|
| - // Exclusions properties.
|
| - // wrap-flow
|
| - static WrapFlow initialWrapFlow() { return WrapFlowAuto; }
|
| -
|
| - // wrap-through
|
| - static WrapThrough initialWrapThrough() { return WrapThroughWrap; }
|
| -
|
| // will-change
|
| const Vector<CSSPropertyID>& willChangeProperties() const { return m_rareNonInheritedData->m_willChange->m_properties; }
|
| bool willChangeContents() const { return m_rareNonInheritedData->m_willChange->m_contents; }
|
| @@ -2380,14 +2373,6 @@ public:
|
| bool isStyleAvailable() const;
|
| bool isSharable() const;
|
|
|
| - // TODO(sashab) Remove these.
|
| - static ImageOrientationEnum initialImageOrientation() { return OriginTopLeft; }
|
| - static ImageResolutionSource initialImageResolutionSource() { return ImageResolutionSpecified; }
|
| - static ImageResolutionSnap initialImageResolutionSnap() { return ImageResolutionNoSnap; }
|
| - static float initialImageResolution() { return 1; }
|
| - void setWrapFlow(WrapFlow wrapFlow) { SET_VAR(m_rareNonInheritedData, m_wrapFlow, wrapFlow); }
|
| - void setWrapThrough(WrapThrough wrapThrough) { SET_VAR(m_rareNonInheritedData, m_wrapThrough, wrapThrough); }
|
| -
|
| private:
|
| void setVisitedLinkColor(const Color&);
|
| void setVisitedLinkBackgroundColor(const StyleColor& v) { SET_VAR(m_rareNonInheritedData, m_visitedLinkBackgroundColor, v); }
|
|
|