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

Unified Diff: third_party/WebKit/Source/core/css/cssom/CSSPositionValue.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/CSSPositionValue.h
diff --git a/third_party/WebKit/Source/core/css/cssom/CSSPositionValue.h b/third_party/WebKit/Source/core/css/cssom/CSSPositionValue.h
index 3925dd555e58e9ae22525557f2d905ffb615374d..5df21736d298732f74393eb78b5c381f93957a28 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSPositionValue.h
+++ b/third_party/WebKit/Source/core/css/cssom/CSSPositionValue.h
@@ -7,13 +7,13 @@
#include "bindings/core/v8/ScriptWrappable.h"
#include "core/CoreExport.h"
-#include "core/css/cssom/StyleValue.h"
+#include "core/css/cssom/CSSStyleValue.h"
namespace blink {
class CSSLengthValue;
-class CORE_EXPORT CSSPositionValue final : public StyleValue {
+class CORE_EXPORT CSSPositionValue final : public CSSStyleValue {
WTF_MAKE_NONCOPYABLE(CSSPositionValue);
DEFINE_WRAPPERTYPEINFO();
public:
@@ -34,7 +34,7 @@ public:
{
visitor->trace(m_x);
visitor->trace(m_y);
- StyleValue::trace(visitor);
+ CSSStyleValue::trace(visitor);
}
protected:

Powered by Google App Engine
This is Rietveld 408576698