| Index: third_party/WebKit/Source/core/dom/custom/CustomElementReactionQueue.h
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementReactionQueue.h b/third_party/WebKit/Source/core/dom/custom/CustomElementReactionQueue.h
|
| index 280d8f862889d90778b493d88c4c7f5942149e41..b4b608b737b6bc809d5702ce62d01957aeae1051 100644
|
| --- a/third_party/WebKit/Source/core/dom/custom/CustomElementReactionQueue.h
|
| +++ b/third_party/WebKit/Source/core/dom/custom/CustomElementReactionQueue.h
|
| @@ -25,9 +25,10 @@ public:
|
|
|
| void add(CustomElementReaction*);
|
| void invokeReactions(Element*);
|
| + bool isEmpty() { return m_reactions.isEmpty(); }
|
|
|
| private:
|
| - HeapVector<Member<CustomElementReaction>> m_reactions;
|
| + HeapVector<Member<CustomElementReaction>, 1> m_reactions;
|
| size_t m_index;
|
| };
|
|
|
|
|