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

Unified Diff: third_party/WebKit/Source/core/css/CSSPathValue.h

Issue 1649003002: Use StylePath instead of (Path)StyleMotionPath (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 11 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 | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/css/CSSPathValue.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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());
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/css/CSSPathValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698