summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/css/CSSFontValue.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/css/CSSFontValue.h')
-rw-r--r--chromium/third_party/WebKit/Source/core/css/CSSFontValue.h18
1 files changed, 10 insertions, 8 deletions
diff --git a/chromium/third_party/WebKit/Source/core/css/CSSFontValue.h b/chromium/third_party/WebKit/Source/core/css/CSSFontValue.h
index f0c99d55326..892d4e24b82 100644
--- a/chromium/third_party/WebKit/Source/core/css/CSSFontValue.h
+++ b/chromium/third_party/WebKit/Source/core/css/CSSFontValue.h
@@ -32,21 +32,23 @@ class CSSValueList;
class CSSFontValue : public CSSValue {
public:
- static PassRefPtr<CSSFontValue> create()
+ static PassRefPtrWillBeRawPtr<CSSFontValue> create()
{
- return adoptRef(new CSSFontValue);
+ return adoptRefWillBeNoop(new CSSFontValue);
}
String customCSSText() const;
bool equals(const CSSFontValue&) const;
- RefPtr<CSSPrimitiveValue> style;
- RefPtr<CSSPrimitiveValue> variant;
- RefPtr<CSSPrimitiveValue> weight;
- RefPtr<CSSPrimitiveValue> size;
- RefPtr<CSSPrimitiveValue> lineHeight;
- RefPtr<CSSValueList> family;
+ void traceAfterDispatch(Visitor*);
+
+ RefPtrWillBeMember<CSSPrimitiveValue> style;
+ RefPtrWillBeMember<CSSPrimitiveValue> variant;
+ RefPtrWillBeMember<CSSPrimitiveValue> weight;
+ RefPtrWillBeMember<CSSPrimitiveValue> size;
+ RefPtrWillBeMember<CSSPrimitiveValue> lineHeight;
+ RefPtrWillBeMember<CSSValueList> family;
private:
CSSFontValue()