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/CSSStyleValue.h

Issue 2036893003: [CSS Typed OM] Rename StyleValue -> CSSStyleValue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update more union types 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/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 a38f9cafc1cfcc8e476a66aaa684b0cc9cb86dd0..3f655141c4f2d24b7fa8544efe9d4a339dcd4c5e 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"
@@ -15,8 +15,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 {
@@ -29,7 +29,7 @@ public:
TransformValueType,
};
- virtual ~StyleValue() { }
+ virtual ~CSSStyleValue() { }
virtual StyleValueType type() const = 0;
@@ -44,7 +44,7 @@ public:
DEFINE_INLINE_VIRTUAL_TRACE() { }
protected:
- StyleValue() {}
+ CSSStyleValue() {}
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/css/cssom/CSSSimpleLength.h ('k') | third_party/WebKit/Source/core/css/cssom/CSSStyleValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698