Index: third_party/WebKit/Source/core/css/CSSPathValue.h |
diff --git a/third_party/WebKit/Source/core/css/CSSPathValue.h b/third_party/WebKit/Source/core/css/CSSPathValue.h |
index f80acbb1efd8ac4cde071c5bf3d6e68b159c8265..eefeb1b48f77203782938c94cfa203b8b5d9ed7d 100644 |
--- a/third_party/WebKit/Source/core/css/CSSPathValue.h |
+++ b/third_party/WebKit/Source/core/css/CSSPathValue.h |
@@ -22,7 +22,7 @@ public: |
static CSSPathValue* emptyPathValue(); |
- StylePath* cachedPath(); |
+ StylePath* cachedPath() const; |
String customCSSText() const; |
bool equals(const CSSPathValue&) const; |
@@ -36,7 +36,7 @@ private: |
CSSPathValue(PassRefPtr<SVGPathByteStream>, StylePath*); |
RefPtr<SVGPathByteStream> m_pathByteStream; |
- RefPtr<StylePath> m_cachedPath; |
+ mutable RefPtr<StylePath> m_cachedPath; |
}; |
DEFINE_CSS_VALUE_TYPE_CASTS(CSSPathValue, isPathValue()); |