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

Unified Diff: third_party/WebKit/Source/platform/animation/CompositorFilterKeyframe.cpp

Issue 1616653002: CC Animation: Move files from cc_blink to Source/platform/animation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: GC 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/platform/animation/CompositorFilterKeyframe.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebFilterKeyframe.cpp b/third_party/WebKit/Source/platform/animation/CompositorFilterKeyframe.cpp
similarity index 87%
rename from third_party/WebKit/Source/platform/exported/WebFilterKeyframe.cpp
rename to third_party/WebKit/Source/platform/animation/CompositorFilterKeyframe.cpp
index 32052f914bc832a8bacd4ce1ade2b95ca7dd6298..39f73650fcb25de94032071a56d4c78ae4dcf4b9 100644
--- a/third_party/WebKit/Source/platform/exported/WebFilterKeyframe.cpp
+++ b/third_party/WebKit/Source/platform/animation/CompositorFilterKeyframe.cpp
@@ -22,19 +22,19 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include "public/platform/WebFilterKeyframe.h"
+#include "platform/animation/CompositorFilterKeyframe.h"
#include "wtf/PassOwnPtr.h"
namespace blink {
-WebFilterKeyframe::WebFilterKeyframe(double time, PassOwnPtr<WebFilterOperations> value)
+CompositorFilterKeyframe::CompositorFilterKeyframe(double time, PassOwnPtr<CompositorFilterOperations> value)
: m_time(time)
, m_value(std::move(value))
{
}
-WebFilterKeyframe::~WebFilterKeyframe()
+CompositorFilterKeyframe::~CompositorFilterKeyframe()
{
m_value.reset(0);
}

Powered by Google App Engine
This is Rietveld 408576698