1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CSSUnsetValue_h
6 #define CSSUnsetValue_h
8 #include "core/css/CSSValue.h"
9 #include "wtf/PassRefPtr.h"
13 class CSSUnsetValue
: public CSSValue
{
15 static PassRefPtrWillBeRawPtr
<CSSUnsetValue
> create()
17 return adoptRefWillBeNoop(new CSSUnsetValue
);
20 String
customCSSText() const;
22 bool equals(const CSSUnsetValue
&) const { return true; }
24 DEFINE_INLINE_TRACE_AFTER_DISPATCH() { CSSValue::traceAfterDispatch(visitor
); }
28 : CSSValue(UnsetClass
)
33 DEFINE_CSS_VALUE_TYPE_CASTS(CSSUnsetValue
, isUnsetValue());
37 #endif // CSSUnsetValue_h