| Index: third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.h
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.h b/third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..9bdad27aaa9fe063d418f4b9ff32b682d0d80fd5
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.h
|
| @@ -0,0 +1,47 @@
|
| +// Copyright 2016 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 ComputedStylePropertyMap_h
|
| +#define ComputedStylePropertyMap_h
|
| +
|
| +#include "core/css/cssom/ImmutableStylePropertyMap.h"
|
| +
|
| +namespace blink {
|
| +
|
| +class CSSComputedStyleDeclaration;
|
| +class CSSStyleDeclaration;
|
| +class Element;
|
| +
|
| +class CORE_EXPORT ComputedStylePropertyMap : public ImmutableStylePropertyMap {
|
| + WTF_MAKE_NONCOPYABLE(ComputedStylePropertyMap);
|
| +
|
| +public:
|
| + static ComputedStylePropertyMap* create(PassRefPtrWillBeRawPtr<CSSComputedStyleDeclaration> computedStyleDeclaration)
|
| + {
|
| + return new ComputedStylePropertyMap(computedStyleDeclaration);
|
| + }
|
| +
|
| + StyleValueVector getAll(CSSPropertyID) override;
|
| + bool has(CSSPropertyID) override;
|
| + Vector<String> getProperties() override;
|
| +
|
| + DEFINE_INLINE_VIRTUAL_TRACE()
|
| + {
|
| + visitor->trace(m_computedStyleDeclaration);
|
| + ImmutableStylePropertyMap::trace(visitor);
|
| + }
|
| +
|
| +protected:
|
| + ComputedStylePropertyMap(PassRefPtrWillBeRawPtr<CSSComputedStyleDeclaration> computedStyleDeclaration)
|
| + : ImmutableStylePropertyMap()
|
| + , m_computedStyleDeclaration(computedStyleDeclaration) { }
|
| +
|
| + IterationSource* startIteration(ScriptState*, ExceptionState&) override { return nullptr; }
|
| +
|
| + RefPtrWillBeMember<CSSStyleDeclaration> m_computedStyleDeclaration;
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif
|
|
|