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