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

Unified Diff: third_party/WebKit/Source/core/css/cssom/PerspectiveTransformComponent.h

Issue 1949343002: [Obsolete] Typed CSSOM: Prefix LengthValue, CalcLength and SimpleLength with "CSS" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rename layout test files Created 4 years, 7 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/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

Powered by Google App Engine
This is Rietveld 408576698