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

Unified Diff: third_party/WebKit/Source/core/style/ComputedStyle.h

Issue 1545713003: Add StylePath and use it to store 'd' in ComputedStyle (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 2015->2016; Remove unnecessary explicit. 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
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 487253148150fbff82da9531eb7645359defcd51..e44f182d5d4ebe55bb09ec6a67bed842cc87a865 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
@@ -115,6 +115,7 @@ class ScaleTransformOperation;
class ShadowList;
class StyleImage;
class StyleInheritedData;
+class StylePath;
class StyleResolver;
class TransformationMatrix;
class TranslateTransformOperation;
@@ -1498,7 +1499,7 @@ public:
float strokeMiterLimit() const { return svgStyle().strokeMiterLimit(); }
void setStrokeMiterLimit(float f) { accessSVGStyle().setStrokeMiterLimit(f); }
- void setD(PassRefPtrWillBeRawPtr<CSSPathValue> d) { accessSVGStyle().setD(d); }
+ void setD(PassRefPtr<StylePath> d) { accessSVGStyle().setD(d); }
void setCx(const Length& cx) { accessSVGStyle().setCx(cx); }
void setCy(const Length& cy) { accessSVGStyle().setCy(cy); }
void setX(const Length& x) { accessSVGStyle().setX(x); }

Powered by Google App Engine
This is Rietveld 408576698