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

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

Issue 1303173007: Oilpan: Unship Oilpan from CSSValues Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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..ad4a461f5c100228b690de0175d50344bf176377 100644
--- a/Source/core/css/CSSShadowValue.cpp
+++ b/Source/core/css/CSSShadowValue.cpp
@@ -27,12 +27,12 @@
namespace blink {
// Used for text-shadow and box-shadow
-CSSShadowValue::CSSShadowValue(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> x,
- PassRefPtrWillBeRawPtr<CSSPrimitiveValue> y,
- PassRefPtrWillBeRawPtr<CSSPrimitiveValue> blur,
- PassRefPtrWillBeRawPtr<CSSPrimitiveValue> spread,
- PassRefPtrWillBeRawPtr<CSSPrimitiveValue> style,
- PassRefPtrWillBeRawPtr<CSSPrimitiveValue> color)
+CSSShadowValue::CSSShadowValue(PassRefPtr<CSSPrimitiveValue> x,
+ PassRefPtr<CSSPrimitiveValue> y,
+ PassRefPtr<CSSPrimitiveValue> blur,
+ PassRefPtr<CSSPrimitiveValue> spread,
+ PassRefPtr<CSSPrimitiveValue> style,
+ PassRefPtr<CSSPrimitiveValue> color)
: CSSValue(ShadowClass)
, x(x)
, y(y)
@@ -88,15 +88,4 @@ bool CSSShadowValue::equals(const CSSShadowValue& other) const
&& compareCSSValuePtr(style, other.style);
}
-DEFINE_TRACE_AFTER_DISPATCH(CSSShadowValue)
-{
- visitor->trace(x);
- visitor->trace(y);
- visitor->trace(blur);
- visitor->trace(spread);
- visitor->trace(style);
- visitor->trace(color);
- CSSValue::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