| Index: third_party/WebKit/Source/core/css/cssom/PerspectiveTransformComponent.h
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/PerspectiveTransformComponent.h b/third_party/WebKit/Source/core/css/cssom/PerspectiveTransformComponent.h
|
| index 40d55331da8a5163743cdb6531260caa7dd58d5b..af69d465a02793754036069e805c5a16b5268329 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/PerspectiveTransformComponent.h
|
| +++ b/third_party/WebKit/Source/core/css/cssom/PerspectiveTransformComponent.h
|
| @@ -6,7 +6,7 @@
|
| #define PerspectiveTransformComponent_h
|
|
|
| #include "core/CoreExport.h"
|
| -#include "core/css/cssom/LengthValue.h"
|
| +#include "core/css/cssom/CSSLengthValue.h"
|
| #include "core/css/cssom/TransformComponent.h"
|
|
|
| namespace blink {
|
| @@ -17,10 +17,10 @@ class CORE_EXPORT PerspectiveTransformComponent : public TransformComponent {
|
| WTF_MAKE_NONCOPYABLE(PerspectiveTransformComponent);
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static PerspectiveTransformComponent* create(const LengthValue*, ExceptionState&);
|
| + static PerspectiveTransformComponent* create(const CSSLengthValue*, ExceptionState&);
|
|
|
| // Bindings require a non const return value.
|
| - LengthValue* length() const { return const_cast<LengthValue*>(m_length.get()); }
|
| + CSSLengthValue* length() const { return const_cast<CSSLengthValue*>(m_length.get()); }
|
|
|
| TransformComponentType type() const override { return PerspectiveType; }
|
|
|
| @@ -36,9 +36,9 @@ public:
|
| }
|
|
|
| private:
|
| - PerspectiveTransformComponent(const LengthValue* length) : m_length(length) {}
|
| + PerspectiveTransformComponent(const CSSLengthValue* length) : m_length(length) {}
|
|
|
| - Member<const LengthValue> m_length;
|
| + Member<const CSSLengthValue> m_length;
|
| };
|
|
|
| } // namespace blink
|
|
|