X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fcore%2Fcss%2FCSSFontValue.h;h=cf3e97e0d27db29ac00759b933cce05ce1c10e69;hb=ff3e2503a20db9193d323c1d19c38c68004dec4a;hp=f0c99d55326507fbd1a09ed179bdce1ec6c980b6;hpb=7338fba38ba696536d1cc9d389afd716a6ab2fe6;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/core/css/CSSFontValue.h b/src/third_party/WebKit/Source/core/css/CSSFontValue.h index f0c99d5..cf3e97e 100644 --- a/src/third_party/WebKit/Source/core/css/CSSFontValue.h +++ b/src/third_party/WebKit/Source/core/css/CSSFontValue.h @@ -32,21 +32,23 @@ class CSSValueList; class CSSFontValue : public CSSValue { public: - static PassRefPtr create() + static PassRefPtrWillBeRawPtr create() { - return adoptRef(new CSSFontValue); + return adoptRefCountedWillBeRefCountedGarbageCollected(new CSSFontValue); } String customCSSText() const; bool equals(const CSSFontValue&) const; - RefPtr style; - RefPtr variant; - RefPtr weight; - RefPtr size; - RefPtr lineHeight; - RefPtr family; + void traceAfterDispatch(Visitor*); + + RefPtrWillBeMember style; + RefPtrWillBeMember variant; + RefPtrWillBeMember weight; + RefPtrWillBeMember size; + RefPtrWillBeMember lineHeight; + RefPtrWillBeMember family; private: CSSFontValue()