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

Unified Diff: Source/core/css/CSSShadowValue.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/CSSShadowValue.h ('k') | Source/core/css/CSSStyleDeclaration.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSShadowValue.cpp
diff --git a/Source/core/css/CSSShadowValue.cpp b/Source/core/css/CSSShadowValue.cpp
index 38663d3fa65051c795b9f751cc6c66386a81b92c..260250441f4c3ee057843cce4bb1e9ce25e05d00 100644
--- a/Source/core/css/CSSShadowValue.cpp
+++ b/Source/core/css/CSSShadowValue.cpp
@@ -33,7 +33,7 @@ CSSShadowValue::CSSShadowValue(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> x,
PassRefPtrWillBeRawPtr<CSSPrimitiveValue> spread,
PassRefPtrWillBeRawPtr<CSSPrimitiveValue> style,
PassRefPtrWillBeRawPtr<CSSPrimitiveValue> color)
- : CSSValue(ShadowClass)
+ : CSSValueObject(ShadowClass)
, x(x)
, y(y)
, blur(blur)
@@ -96,7 +96,7 @@ DEFINE_TRACE_AFTER_DISPATCH(CSSShadowValue)
visitor->trace(spread);
visitor->trace(style);
visitor->trace(color);
- CSSValue::traceAfterDispatch(visitor);
+ CSSValueObject::traceAfterDispatch(visitor);
}
}
« no previous file with comments | « Source/core/css/CSSShadowValue.h ('k') | Source/core/css/CSSStyleDeclaration.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698