| 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
|
|
|