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

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

Issue 2039093003: [Typed OM] Implement CSSValue->CSSRotation conversion (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address review comments Created 4 years, 6 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/cssom/CSSRotation.h
diff --git a/third_party/WebKit/Source/core/css/cssom/CSSRotation.h b/third_party/WebKit/Source/core/css/cssom/CSSRotation.h
index 87d2cdaa81e3b34d83bd1385b8e69627b97ba6bb..ee6d7065b6414b9cdf20f204208ee822ef2d69c3 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSRotation.h
+++ b/third_party/WebKit/Source/core/css/cssom/CSSRotation.h
@@ -35,7 +35,7 @@ public:
return new CSSRotation(x, y, z, angleValue->degrees());
}
- static CSSRotation* fromCSSValue(const CSSFunctionValue&) { return nullptr; }
+ static CSSRotation* fromCSSValue(const CSSFunctionValue&);
double angle() const { return m_angle; }
double x() const { return m_x; }

Powered by Google App Engine
This is Rietveld 408576698