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

Unified Diff: third_party/WebKit/Source/core/css/cssom/CSSAngleValue.h

Issue 2514043002: [CSS Typed OM] Add CSSValue->CSSSkew conversions (Closed)
Patch Set: Merge branch 'update-transform-tests' into cssskew-fromcssvalue-2 Created 4 years 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/cssom/CSSAngleValue.h
diff --git a/third_party/WebKit/Source/core/css/cssom/CSSAngleValue.h b/third_party/WebKit/Source/core/css/cssom/CSSAngleValue.h
index 8e47d7e4217c0397c13e4b5365a454571d06aaba..a9f17b3c282362427e1165f739d1a9b992ed68fb 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSAngleValue.h
+++ b/third_party/WebKit/Source/core/css/cssom/CSSAngleValue.h
@@ -16,6 +16,7 @@ class CORE_EXPORT CSSAngleValue final : public CSSStyleValue {
public:
static CSSAngleValue* create(double value, const String& unit);
+ static CSSAngleValue* create(double value, CSSPrimitiveValue::UnitType);
static CSSAngleValue* fromCSSValue(const CSSPrimitiveValue&);
StyleValueType type() const override { return AngleType; }

Powered by Google App Engine
This is Rietveld 408576698