| Index: third_party/WebKit/Source/core/dom/custom/V0CustomElementScheduler.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/V0CustomElementScheduler.cpp b/third_party/WebKit/Source/core/dom/custom/V0CustomElementScheduler.cpp
|
| index 8cd07dfd595e9520fe9f19eb6d32afada1f93c21..bf8d1ffe4557a1aa1c12a693ecd7633b31f7bc6f 100644
|
| --- a/third_party/WebKit/Source/core/dom/custom/V0CustomElementScheduler.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementScheduler.cpp
|
| @@ -58,7 +58,7 @@ static ElementCallbackQueueMap& callbackQueues() {
|
|
|
| static V0CustomElementCallbackQueue& ensureCallbackQueue(Element* element) {
|
| ElementCallbackQueueMap::ValueType* it =
|
| - callbackQueues().add(element, nullptr).storedValue;
|
| + callbackQueues().insert(element, nullptr).storedValue;
|
| if (!it->value)
|
| it->value = V0CustomElementCallbackQueue::create(element);
|
| return *it->value.get();
|
|
|