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

Unified Diff: Source/core/css/CSSPathValue.cpp

Issue 1164573002: CSSValue Immediates: Change CSSValue to an object instead of a pointer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 5 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
« no previous file with comments | « Source/core/css/CSSPathValue.h ('k') | Source/core/css/CSSPrimitiveValue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSPathValue.cpp
diff --git a/Source/core/css/CSSPathValue.cpp b/Source/core/css/CSSPathValue.cpp
index 22b868974d1636ef56cc8fbe8fe8c39a1f3f8ab0..60175b72dc27e90045d518011e369fbea38afe68 100644
--- a/Source/core/css/CSSPathValue.cpp
+++ b/Source/core/css/CSSPathValue.cpp
@@ -8,7 +8,7 @@
namespace blink {
CSSPathValue::CSSPathValue(const String& pathString)
- : CSSValue(PathClass)
+ : CSSValueObject(PathClass)
, m_pathString(pathString)
{
}
@@ -25,7 +25,7 @@ bool CSSPathValue::equals(const CSSPathValue& other) const
DEFINE_TRACE_AFTER_DISPATCH(CSSPathValue)
{
- CSSValue::traceAfterDispatch(visitor);
+ CSSValueObject::traceAfterDispatch(visitor);
}
} // namespace blink
« no previous file with comments | « Source/core/css/CSSPathValue.h ('k') | Source/core/css/CSSPrimitiveValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698