summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/css/CSSFontFeatureValue.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/css/CSSFontFeatureValue.h')
-rw-r--r--chromium/third_party/WebKit/Source/core/css/CSSFontFeatureValue.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/chromium/third_party/WebKit/Source/core/css/CSSFontFeatureValue.h b/chromium/third_party/WebKit/Source/core/css/CSSFontFeatureValue.h
index 8a0367fabe3..fc841792619 100644
--- a/chromium/third_party/WebKit/Source/core/css/CSSFontFeatureValue.h
+++ b/chromium/third_party/WebKit/Source/core/css/CSSFontFeatureValue.h
@@ -33,9 +33,9 @@ namespace WebCore {
class CSSFontFeatureValue : public CSSValue {
public:
- static PassRefPtr<CSSFontFeatureValue> create(const AtomicString& tag, int value)
+ static PassRefPtrWillBeRawPtr<CSSFontFeatureValue> create(const AtomicString& tag, int value)
{
- return adoptRef(new CSSFontFeatureValue(tag, value));
+ return adoptRefWillBeNoop(new CSSFontFeatureValue(tag, value));
}
const AtomicString& tag() const { return m_tag; }
@@ -44,6 +44,8 @@ public:
bool equals(const CSSFontFeatureValue&) const;
+ void traceAfterDispatch(Visitor* visitor) { CSSValue::traceAfterDispatch(visitor); }
+
private:
CSSFontFeatureValue(const AtomicString& tag, int value);