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

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

Issue 1590193002: Partial implementation of inline StylePropertyMap. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@maps
Patch Set: Remove spurious file Created 4 years, 9 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
(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 , m_styles() { }
24
25 StyleValue* get(CSSPropertyID) override;
26 StyleValueVector getAll(CSSPropertyID) override;
27 bool has(CSSPropertyID) override;
28 Vector<String> getProperties() override;
29
30 void set(CSSPropertyID, StyleValueOrStyleValueSequenceOrString& item, Except ionState&) override;
Timothy Loh 2016/03/23 03:45:09 no need to give arguments names in declarations if
meade_UTC10 2016/03/29 06:27:37 Done.
31 void append(CSSPropertyID, StyleValueOrStyleValueSequenceOrString& item, Exc eptionState&) override;
32 void remove(CSSPropertyID, ExceptionState&) override;
33
34 void updatePropertyIfNeeded(CSSPropertyID);
35 void updateCustomProperty(const String& propertyName, PassRefPtrWillBeRawPtr <CSSValue>);
36 void invalidate()
37 {
38 m_cleanStyles.clear();
39 }
40
41 DEFINE_INLINE_VIRTUAL_TRACE()
42 {
43 visitor->trace(m_ownerElement);
44 visitor->trace(m_styles);
45 MutableStylePropertyMap::trace(visitor);
46 }
47
48 private:
49 Member<Element> m_ownerElement;
50 StyleVectorMap m_styles;
51 HashMap<CSSPropertyID, bool> m_cleanStyles;
Timothy Loh 2016/03/23 03:45:09 Are we going to set the bool to false ever? Otherw
meade_UTC10 2016/03/29 06:27:37 Good idea, done.
52
53 StyleValueVector& ensurePropertyList(CSSPropertyID);
54 };
55
56 } // namespace blink
57
58 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698