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

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

Issue 2881673003: CSS Motion Path: Support parsing of ray(<angle>) paths (Closed)
Patch Set: DCHECK_EQ Created 3 years, 7 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 74f2435d204fad85f976a3cbe27f5e45a72ba15d..5ba45d28cd94042419d587a00292b8316a30a945 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
@@ -1146,11 +1146,11 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase,
}
// offset-path
- static StylePath* InitialOffsetPath() { return nullptr; }
- StylePath* OffsetPath() const {
+ static BasicShape* InitialOffsetPath() { return nullptr; }
+ BasicShape* OffsetPath() const {
return rare_non_inherited_data_->transform_->motion_.path_.Get();
}
- void SetOffsetPath(PassRefPtr<StylePath>);
+ void SetOffsetPath(PassRefPtr<BasicShape>);
// offset-position
static LengthPoint InitialOffsetPosition() {

Powered by Google App Engine
This is Rietveld 408576698