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); |
} |