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

Unified Diff: third_party/WebKit/Source/platform/animation/CompositorTransformKeyframe.h

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/CompositorTransformKeyframe.h
diff --git a/third_party/WebKit/public/platform/WebTransformKeyframe.h b/third_party/WebKit/Source/platform/animation/CompositorTransformKeyframe.h
similarity index 71%
rename from third_party/WebKit/public/platform/WebTransformKeyframe.h
rename to third_party/WebKit/Source/platform/animation/CompositorTransformKeyframe.h
index 4adc83af5845124fd0c12a3e520f8e77f7dd26a8..1afd168d46027f6f5542217af71c7ebc0df276d6 100644
--- a/third_party/WebKit/public/platform/WebTransformKeyframe.h
+++ b/third_party/WebKit/Source/platform/animation/CompositorTransformKeyframe.h
@@ -22,35 +22,35 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef WebTransformKeyframe_h
-#define WebTransformKeyframe_h
+#ifndef CompositorTransformKeyframe_h
+#define CompositorTransformKeyframe_h
-#include "WebNonCopyable.h"
-#include "WebPrivateOwnPtr.h"
-#include "WebTransformOperations.h"
+#include "platform/animation/CompositorTransformOperations.h"
+#include "public/platform/WebNonCopyable.h"
+#include "public/platform/WebPrivateOwnPtr.h"
#if INSIDE_BLINK
namespace WTF { template <typename T> class PassOwnPtr; }
#endif
namespace blink {
-class WebTransformKeyframe : public WebNonCopyable {
+class CompositorTransformKeyframe : public WebNonCopyable {
public:
#if INSIDE_BLINK
- BLINK_PLATFORM_EXPORT WebTransformKeyframe(double time, WTF::PassOwnPtr<WebTransformOperations> value);
+ BLINK_PLATFORM_EXPORT CompositorTransformKeyframe(double time, WTF::PassOwnPtr<CompositorTransformOperations> value);
#endif
- BLINK_PLATFORM_EXPORT ~WebTransformKeyframe();
+ BLINK_PLATFORM_EXPORT ~CompositorTransformKeyframe();
BLINK_PLATFORM_EXPORT double time() const;
- BLINK_PLATFORM_EXPORT const WebTransformOperations& value() const;
+ BLINK_PLATFORM_EXPORT const CompositorTransformOperations& value() const;
private:
double m_time;
- WebPrivateOwnPtr<WebTransformOperations> m_value;
+ WebPrivateOwnPtr<CompositorTransformOperations> m_value;
};
} // namespace blink
-#endif // WebTransformKeyframe_h
+#endif // CompositorTransformKeyframe_h

Powered by Google App Engine
This is Rietveld 408576698