| Index: third_party/WebKit/Source/core/css/CSSInheritedValue.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSInheritedValue.h b/third_party/WebKit/Source/core/css/CSSInheritedValue.h
|
| index 9bdc467f4d7341d8f515af91940378e00bd7a144..0c47b3cdcb054bc8d3726d9b0c297c77bb9790fc 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSInheritedValue.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSInheritedValue.h
|
| @@ -32,11 +32,16 @@ public:
|
| {
|
| return adoptRefWillBeNoop(new CSSInheritedValue);
|
| }
|
| + static PassRefPtrWillBeRawPtr<CSSInheritedValue> deserializeAfterDispatch(CSSDeserializeStream*)
|
| + {
|
| + return create();
|
| + }
|
|
|
| String customCSSText() const;
|
|
|
| bool equals(const CSSInheritedValue&) const { return true; }
|
|
|
| + void serializeAfterDispatch(CSSSerializeStream*) const {}
|
| DEFINE_INLINE_TRACE_AFTER_DISPATCH() { CSSValue::traceAfterDispatch(visitor); }
|
|
|
| private:
|
|
|