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

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

Issue 2036893003: [CSS Typed OM] Rename StyleValue -> CSSStyleValue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update order of core.gypi 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/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

Powered by Google App Engine
This is Rietveld 408576698