| Index: third_party/WebKit/Source/core/html/PublicURLManager.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/PublicURLManager.cpp b/third_party/WebKit/Source/core/html/PublicURLManager.cpp
|
| index da224be7c7f1285de085cf791f039bb26a0aa729..ea3f7e5f62c689670323a98fdaf55648da811cd8 100644
|
| --- a/third_party/WebKit/Source/core/html/PublicURLManager.cpp
|
| +++ b/third_party/WebKit/Source/core/html/PublicURLManager.cpp
|
| @@ -53,9 +53,9 @@ String PublicURLManager::registerURL(ExecutionContext* context,
|
|
|
| if (!m_isStopped) {
|
| RegistryURLMap::ValueType* found =
|
| - m_registryToURL.add(®istrable->registry(), URLMap()).storedValue;
|
| + m_registryToURL.insert(®istrable->registry(), URLMap()).storedValue;
|
| found->key->registerURL(origin, url, registrable);
|
| - found->value.add(urlString, uuid);
|
| + found->value.insert(urlString, uuid);
|
| }
|
|
|
| return urlString;
|
|
|