| Index: Source/core/css/CSSUnsetValue.h
|
| diff --git a/Source/core/css/CSSUnsetValue.h b/Source/core/css/CSSUnsetValue.h
|
| deleted file mode 100644
|
| index a748b479fa5e26c2d39d0f0036482f8ed3fbe7d0..0000000000000000000000000000000000000000
|
| --- a/Source/core/css/CSSUnsetValue.h
|
| +++ /dev/null
|
| @@ -1,37 +0,0 @@
|
| -// Copyright 2014 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#ifndef CSSUnsetValue_h
|
| -#define CSSUnsetValue_h
|
| -
|
| -#include "core/css/CSSValue.h"
|
| -#include "wtf/PassRefPtr.h"
|
| -
|
| -namespace blink {
|
| -
|
| -class CSSUnsetValue : public CSSValue {
|
| -public:
|
| - static PassRefPtrWillBeRawPtr<CSSUnsetValue> create()
|
| - {
|
| - return adoptRefWillBeNoop(new CSSUnsetValue);
|
| - }
|
| -
|
| - String customCSSText() const;
|
| -
|
| - bool equals(const CSSUnsetValue&) const { return true; }
|
| -
|
| - void traceAfterDispatch(Visitor* visitor) { CSSValue::traceAfterDispatch(visitor); }
|
| -
|
| -private:
|
| - CSSUnsetValue()
|
| - : CSSValue(UnsetClass)
|
| - {
|
| - }
|
| -};
|
| -
|
| -DEFINE_CSS_VALUE_TYPE_CASTS(CSSUnsetValue, isUnsetValue());
|
| -
|
| -} // namespace blink
|
| -
|
| -#endif // CSSUnsetValue_h
|
|
|