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

Unified Diff: third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.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/css/resolver/StyleBuilderConverter.h
diff --git a/third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.h b/third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.h
index 9b3027b77bfdf0127e9f26b337d6b01d0fd41dd5..f2f8ff5eadccf1d7cfc9504ee487a171a40e3188 100644
--- a/third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.h
+++ b/third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.h
@@ -46,6 +46,7 @@ namespace blink {
class RotateTransformOperation;
class TranslateTransformOperation;
class ScaleTransformOperation;
+class StylePath;
// Note that we assume the parser only allows valid CSSValue types.
class StyleBuilderConverter {
@@ -104,7 +105,7 @@ public:
static PassRefPtr<RotateTransformOperation> convertRotate(StyleResolverState&, const CSSValue&);
static PassRefPtr<ScaleTransformOperation> convertScale(StyleResolverState&, const CSSValue&);
static RespectImageOrientationEnum convertImageOrientation(StyleResolverState&, const CSSValue&);
- static CSSPathValue* convertPath(StyleResolverState&, CSSValue&);
+ static PassRefPtr<StylePath> convertPath(StyleResolverState&, CSSValue&);
};
template <typename T>

Powered by Google App Engine
This is Rietveld 408576698