| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 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. |
| 4 |
| 5 #ifndef InlineStylePropertyMap_h |
| 6 #define InlineStylePropertyMap_h |
| 7 |
| 8 #include "core/css/cssom/MutableStylePropertyMap.h" |
| 9 #include "core/dom/Element.h" |
| 10 |
| 11 namespace blink { |
| 12 |
| 13 class CSSValue; |
| 14 |
| 15 typedef HeapVector<Member<StyleValue>> StyleValueVector; |
| 16 typedef HeapHashMap<CSSPropertyID, StyleValueVector> StyleVectorMap; |
| 17 |
| 18 class CORE_EXPORT InlineStylePropertyMap final : public MutableStylePropertyMap
{ |
| 19 WTF_MAKE_NONCOPYABLE(InlineStylePropertyMap); |
| 20 public: |
| 21 explicit InlineStylePropertyMap(Element* ownerElement) |
| 22 : m_ownerElement(ownerElement) { } |
| 23 |
| 24 StyleValue* get(CSSPropertyID) override; |
| 25 StyleValueVector getAll(CSSPropertyID) override; |
| 26 bool has(CSSPropertyID) override; |
| 27 Vector<String> getProperties() override; |
| 28 |
| 29 void set(CSSPropertyID, StyleValueOrStyleValueSequenceOrString&, ExceptionSt
ate&) override; |
| 30 void append(CSSPropertyID, StyleValueOrStyleValueSequenceOrString&, Exceptio
nState&) override; |
| 31 void remove(CSSPropertyID, ExceptionState&) override; |
| 32 |
| 33 DEFINE_INLINE_VIRTUAL_TRACE() |
| 34 { |
| 35 visitor->trace(m_ownerElement); |
| 36 MutableStylePropertyMap::trace(visitor); |
| 37 } |
| 38 |
| 39 private: |
| 40 Member<Element> m_ownerElement; |
| 41 }; |
| 42 |
| 43 } // namespace blink |
| 44 |
| 45 #endif |
| OLD | NEW |