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

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

Issue 1439793003: SVG: Promote d to a property (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CSSPropertyParser Created 5 years, 1 month 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/SVGComputedStyleDefs.h
diff --git a/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.h b/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.h
index ae3e3a9a69802b7cf775d15fd36be1b4fc1400d7..451822411d5c41a31e3fd187cc3d3a27429dcb28 100644
--- a/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.h
+++ b/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.h
@@ -29,6 +29,7 @@
#define SVGComputedStyleDefs_h
#include "core/CoreExport.h"
+#include "core/svg/SVGPathByteStream.h"
#include "platform/Length.h"
#include "platform/graphics/Color.h"
#include "wtf/Allocator.h"
@@ -289,6 +290,7 @@ class StyleLayoutData : public RefCounted<StyleLayoutData> {
{
return !(*this == other);
}
+ OwnPtr<SVGPathByteStream> d;
fs 2015/11/26 12:51:40 Why not something similar to StyleMotionPath here?
Eric Willigers 2015/12/10 23:52:52 For motion path, we didn't need to animate the pat
fs 2015/12/11 13:01:58 I don't think it would be too far-fetched to expec
Length cx;
Length cy;
Length x;

Powered by Google App Engine
This is Rietveld 408576698