Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: third_party/WebKit/Source/core/css/cssom/InlineStylePropertyMap.h

Issue 1849653003: Implement ComputedStylePropertyMap for Typed OM. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@maps-inline
Patch Set: Update global-interface-listing Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef InlineStylePropertyMap_h 5 #ifndef InlineStylePropertyMap_h
6 #define InlineStylePropertyMap_h 6 #define InlineStylePropertyMap_h
7 7
8 #include "core/css/cssom/MutableStylePropertyMap.h" 8 #include "core/css/cssom/MutableStylePropertyMap.h"
9 #include "core/dom/Element.h" 9 #include "core/dom/Element.h"
10 10
11 namespace blink { 11 namespace blink {
12 12
13 class CSSValue; 13 class CSSValue;
14 14
15 typedef HeapVector<Member<StyleValue>> StyleValueVector; 15 typedef HeapVector<Member<StyleValue>> StyleValueVector;
16 typedef HeapHashMap<CSSPropertyID, StyleValueVector> StyleVectorMap; 16 typedef HeapHashMap<CSSPropertyID, StyleValueVector> StyleVectorMap;
17 17
18 class CORE_EXPORT InlineStylePropertyMap final : public MutableStylePropertyMap { 18 class CORE_EXPORT InlineStylePropertyMap final : public MutableStylePropertyMap {
19 WTF_MAKE_NONCOPYABLE(InlineStylePropertyMap); 19 WTF_MAKE_NONCOPYABLE(InlineStylePropertyMap);
20 public: 20 public:
21 explicit InlineStylePropertyMap(Element* ownerElement) 21 explicit InlineStylePropertyMap(Element* ownerElement)
22 : m_ownerElement(ownerElement) { } 22 : m_ownerElement(ownerElement) { }
23 23
24 StyleValue* get(CSSPropertyID) override;
25 StyleValueVector getAll(CSSPropertyID) override; 24 StyleValueVector getAll(CSSPropertyID) override;
26 bool has(CSSPropertyID) override; 25 bool has(CSSPropertyID) override;
27 Vector<String> getProperties() override; 26 Vector<String> getProperties() override;
28 27
29 void set(CSSPropertyID, StyleValueOrStyleValueSequenceOrString&, ExceptionSt ate&) override; 28 void set(CSSPropertyID, StyleValueOrStyleValueSequenceOrString&, ExceptionSt ate&) override;
30 void append(CSSPropertyID, StyleValueOrStyleValueSequenceOrString&, Exceptio nState&) override; 29 void append(CSSPropertyID, StyleValueOrStyleValueSequenceOrString&, Exceptio nState&) override;
31 void remove(CSSPropertyID, ExceptionState&) override; 30 void remove(CSSPropertyID, ExceptionState&) override;
32 31
33 DEFINE_INLINE_VIRTUAL_TRACE() 32 DEFINE_INLINE_VIRTUAL_TRACE()
34 { 33 {
35 visitor->trace(m_ownerElement); 34 visitor->trace(m_ownerElement);
36 MutableStylePropertyMap::trace(visitor); 35 MutableStylePropertyMap::trace(visitor);
37 } 36 }
38 37
39 private: 38 private:
40 RefPtrWillBeMember<Element> m_ownerElement; 39 RefPtrWillBeMember<Element> m_ownerElement;
41 }; 40 };
42 41
43 } // namespace blink 42 } // namespace blink
44 43
45 #endif 44 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698