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

Unified Diff: third_party/WebKit/Source/core/css/CSSShadowValue.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/CSSShadowValue.h
diff --git a/third_party/WebKit/Source/core/css/CSSShadowValue.h b/third_party/WebKit/Source/core/css/CSSShadowValue.h
index e606c3b9a0336c5bb270dddcca0726b4e8b227bc..908e16331f2dc5f818af2477ee0a0e7d33e3066d 100644
--- a/third_party/WebKit/Source/core/css/CSSShadowValue.h
+++ b/third_party/WebKit/Source/core/css/CSSShadowValue.h
@@ -33,36 +33,36 @@ class CSSPrimitiveValue;
// Used for text-shadow and box-shadow
class CORE_EXPORT CSSShadowValue : public CSSValue {
public:
- static PassRefPtrWillBeRawPtr<CSSShadowValue> create(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> x,
- PassRefPtrWillBeRawPtr<CSSPrimitiveValue> y,
- PassRefPtrWillBeRawPtr<CSSPrimitiveValue> blur,
- PassRefPtrWillBeRawPtr<CSSPrimitiveValue> spread,
- PassRefPtrWillBeRawPtr<CSSPrimitiveValue> style,
- PassRefPtrWillBeRawPtr<CSSValue> color)
+ static RawPtr<CSSShadowValue> create(RawPtr<CSSPrimitiveValue> x,
+ RawPtr<CSSPrimitiveValue> y,
+ RawPtr<CSSPrimitiveValue> blur,
+ RawPtr<CSSPrimitiveValue> spread,
+ RawPtr<CSSPrimitiveValue> style,
+ RawPtr<CSSValue> color)
{
- return adoptRefWillBeNoop(new CSSShadowValue(x, y, blur, spread, style, color));
+ return new CSSShadowValue(x, y, blur, spread, style, color);
}
String customCSSText() const;
bool equals(const CSSShadowValue&) const;
- RefPtrWillBeMember<CSSPrimitiveValue> x;
- RefPtrWillBeMember<CSSPrimitiveValue> y;
- RefPtrWillBeMember<CSSPrimitiveValue> blur;
- RefPtrWillBeMember<CSSPrimitiveValue> spread;
- RefPtrWillBeMember<CSSPrimitiveValue> style;
- RefPtrWillBeMember<CSSValue> color;
+ Member<CSSPrimitiveValue> x;
+ Member<CSSPrimitiveValue> y;
+ Member<CSSPrimitiveValue> blur;
+ Member<CSSPrimitiveValue> spread;
+ Member<CSSPrimitiveValue> style;
+ Member<CSSValue> color;
DECLARE_TRACE_AFTER_DISPATCH();
private:
- CSSShadowValue(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> x,
- PassRefPtrWillBeRawPtr<CSSPrimitiveValue> y,
- PassRefPtrWillBeRawPtr<CSSPrimitiveValue> blur,
- PassRefPtrWillBeRawPtr<CSSPrimitiveValue> spread,
- PassRefPtrWillBeRawPtr<CSSPrimitiveValue> style,
- PassRefPtrWillBeRawPtr<CSSValue> color);
+ CSSShadowValue(RawPtr<CSSPrimitiveValue> x,
+ RawPtr<CSSPrimitiveValue> y,
+ RawPtr<CSSPrimitiveValue> blur,
+ RawPtr<CSSPrimitiveValue> spread,
+ RawPtr<CSSPrimitiveValue> style,
+ RawPtr<CSSValue> color);
};
DEFINE_CSS_VALUE_TYPE_CASTS(CSSShadowValue, isShadowValue());
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSSegmentedFontFace.cpp ('k') | third_party/WebKit/Source/core/css/CSSShadowValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698