| Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceContainer.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceContainer.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceContainer.cpp
|
| index fe3dd9268d9e859d45e7860bb3b3f92379d66b4f..f7056fd2bd0098cb316a574e9499cd9fd3719185 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceContainer.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceContainer.cpp
|
| @@ -193,7 +193,7 @@ void LayoutSVGResourceContainer::addClient(LayoutObject* client) {
|
| void LayoutSVGResourceContainer::removeClient(LayoutObject* client) {
|
| ASSERT(client);
|
| removeClientFromCache(client, false);
|
| - m_clients.remove(client);
|
| + m_clients.erase(client);
|
| }
|
|
|
| void LayoutSVGResourceContainer::invalidateCacheAndMarkForLayout(
|
| @@ -275,7 +275,7 @@ static inline void removeFromCacheAndInvalidateDependencies(
|
|
|
| LayoutSVGResourceContainer::markForLayoutAndParentResourceInvalidation(
|
| layoutObject, needsLayout);
|
| - invalidatingDependencies.remove(element);
|
| + invalidatingDependencies.erase(element);
|
| }
|
| }
|
| }
|
|
|