| Index: third_party/WebKit/Source/core/css/cssom/CSSStyleValue.h
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/StyleValue.h b/third_party/WebKit/Source/core/css/cssom/CSSStyleValue.h
|
| similarity index 79%
|
| rename from third_party/WebKit/Source/core/css/cssom/StyleValue.h
|
| rename to third_party/WebKit/Source/core/css/cssom/CSSStyleValue.h
|
| index a34d1fa46ffaa82c8f645b6a712dd2623a0665f9..b9df106ec7900101b95ce3dde7236b293f009234 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/StyleValue.h
|
| +++ b/third_party/WebKit/Source/core/css/cssom/CSSStyleValue.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 StyleValue_h
|
| -#define StyleValue_h
|
| +#ifndef CSSStyleValue_h
|
| +#define CSSStyleValue_h
|
|
|
| #include "bindings/core/v8/ScriptWrappable.h"
|
| #include "core/CoreExport.h"
|
| @@ -16,8 +16,8 @@ class ExceptionState;
|
| class ScriptState;
|
| class ScriptValue;
|
|
|
| -class CORE_EXPORT StyleValue : public GarbageCollectedFinalized<StyleValue>, public ScriptWrappable {
|
| - WTF_MAKE_NONCOPYABLE(StyleValue);
|
| +class CORE_EXPORT CSSStyleValue : public GarbageCollectedFinalized<CSSStyleValue>, public ScriptWrappable {
|
| + WTF_MAKE_NONCOPYABLE(CSSStyleValue);
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| enum StyleValueType {
|
| @@ -30,7 +30,7 @@ public:
|
| TransformValueType,
|
| };
|
|
|
| - virtual ~StyleValue() { }
|
| + virtual ~CSSStyleValue() { }
|
|
|
| virtual StyleValueType type() const = 0;
|
|
|
| @@ -45,7 +45,7 @@ public:
|
| DEFINE_INLINE_VIRTUAL_TRACE() { }
|
|
|
| protected:
|
| - StyleValue() {}
|
| + CSSStyleValue() {}
|
| };
|
|
|
| } // namespace blink
|
|
|