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

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

Issue 1649003002: Use StylePath instead of (Path)StyleMotionPath (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. 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/style/StyleMotionData.h
diff --git a/third_party/WebKit/Source/core/style/StyleMotionData.h b/third_party/WebKit/Source/core/style/StyleMotionData.h
index 4bcc19e6f54ba3ea709484022fb22bd703c870bf..faa2f6ad40e5ff0a36b92d8d4aef5c4f3e8f426d 100644
--- a/third_party/WebKit/Source/core/style/StyleMotionData.h
+++ b/third_party/WebKit/Source/core/style/StyleMotionData.h
@@ -5,8 +5,8 @@
#ifndef StyleMotionData_h
#define StyleMotionData_h
-#include "core/style/StyleMotionPath.h"
#include "core/style/StyleMotionRotation.h"
+#include "core/style/StylePath.h"
#include "platform/Length.h"
#include "wtf/Allocator.h"
@@ -15,7 +15,7 @@ namespace blink {
class StyleMotionData {
DISALLOW_NEW();
public:
- StyleMotionData(StyleMotionPath* path, const Length& offset, StyleMotionRotation rotation)
+ StyleMotionData(StylePath* path, const Length& offset, StyleMotionRotation rotation)
: m_path(path)
, m_offset(offset)
, m_rotation(rotation)
@@ -27,7 +27,7 @@ public:
bool operator!=(const StyleMotionData& o) const { return !(*this == o); }
// Must be public for SET_VAR in ComputedStyle.h
- RefPtr<StyleMotionPath> m_path; // nullptr indicates path is 'none'
+ RefPtr<StylePath> m_path; // nullptr indicates path is 'none'
Length m_offset;
StyleMotionRotation m_rotation;
};
« no previous file with comments | « third_party/WebKit/Source/core/style/PathStyleMotionPath.cpp ('k') | third_party/WebKit/Source/core/style/StyleMotionData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698