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

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

Issue 2099513002: [Typed OM] Rename TransformValue -> CSSTransformValue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@rename-transformcomponent
Patch Set: sync to head Created 4 years, 6 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/CSSTransformValue.h
diff --git a/third_party/WebKit/Source/core/css/cssom/TransformValue.h b/third_party/WebKit/Source/core/css/cssom/CSSTransformValue.h
similarity index 62%
rename from third_party/WebKit/Source/core/css/cssom/TransformValue.h
rename to third_party/WebKit/Source/core/css/cssom/CSSTransformValue.h
index b8fb31b451ddb99c5765e95ae7ec51a1407876c0..8c384ac3c7af8d4c00e2796db00eb557ff760939 100644
--- a/third_party/WebKit/Source/core/css/cssom/TransformValue.h
+++ b/third_party/WebKit/Source/core/css/cssom/CSSTransformValue.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef TransformValue_h
-#define TransformValue_h
+#ifndef CSSTransformValue_h
+#define CSSTransformValue_h
#include "bindings/core/v8/Iterable.h"
#include "bindings/core/v8/ScriptWrappable.h"
@@ -14,21 +14,21 @@
namespace blink {
-class CORE_EXPORT TransformValue final : public CSSStyleValue, public ValueIterable<CSSTransformComponent*> {
- WTF_MAKE_NONCOPYABLE(TransformValue);
+class CORE_EXPORT CSSTransformValue final : public CSSStyleValue, public ValueIterable<CSSTransformComponent*> {
+ WTF_MAKE_NONCOPYABLE(CSSTransformValue);
DEFINE_WRAPPERTYPEINFO();
public:
- static TransformValue* create()
+ static CSSTransformValue* create()
{
- return new TransformValue();
+ return new CSSTransformValue();
}
- static TransformValue* create(const HeapVector<Member<CSSTransformComponent>>& transformComponents)
+ static CSSTransformValue* create(const HeapVector<Member<CSSTransformComponent>>& transformComponents)
{
- return new TransformValue(transformComponents);
+ return new CSSTransformValue(transformComponents);
}
- static TransformValue* fromCSSValue(const CSSValue&);
+ static CSSTransformValue* fromCSSValue(const CSSValue&);
bool is2D() const;
@@ -47,8 +47,8 @@ public:
}
private:
- TransformValue() {}
- TransformValue(const HeapVector<Member<CSSTransformComponent>>& transformComponents) : CSSStyleValue(),
+ CSSTransformValue() {}
+ CSSTransformValue(const HeapVector<Member<CSSTransformComponent>>& transformComponents) : CSSStyleValue(),
m_transformComponents(transformComponents) {}
HeapVector<Member<CSSTransformComponent>> m_transformComponents;
@@ -58,4 +58,4 @@ private:
} // namespace blink
-#endif
+#endif // CSSTransformValue_h
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/css/cssom/CSSTransformValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698