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

Unified Diff: Source/core/css/CSSContentDistributionValue.h

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/CSSComputedStyleDeclaration.cpp ('k') | Source/core/css/CSSContentDistributionValue.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSContentDistributionValue.h
diff --git a/Source/core/css/CSSContentDistributionValue.h b/Source/core/css/CSSContentDistributionValue.h
index ba5590b8f514f5994f8c73d8cbfd290e091a5257..f7043db976c8cb1210991b372ae09400ef3f4129 100644
--- a/Source/core/css/CSSContentDistributionValue.h
+++ b/Source/core/css/CSSContentDistributionValue.h
@@ -11,7 +11,7 @@
namespace blink {
-class CSSContentDistributionValue : public CSSValue {
+class CSSContentDistributionValue : public CSSValueObject {
public:
static PassRefPtrWillBeRawPtr<CSSContentDistributionValue> create(CSSValueID distribution, CSSValueID position, CSSValueID overflow)
{
@@ -29,7 +29,7 @@ public:
bool equals(const CSSContentDistributionValue&) const;
- DEFINE_INLINE_TRACE_AFTER_DISPATCH() { CSSValue::traceAfterDispatch(visitor); }
+ DEFINE_INLINE_TRACE_AFTER_DISPATCH() { CSSValueObject::traceAfterDispatch(visitor); }
private:
CSSContentDistributionValue(CSSValueID distribution, CSSValueID position, CSSValueID overflow);
« no previous file with comments | « Source/core/css/CSSComputedStyleDeclaration.cpp ('k') | Source/core/css/CSSContentDistributionValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698