| 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 609ee09b430650be62e73f02a324da89a4f5daf0..cdfd2911b1582490cba75daa943bcc2e2f71187c 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;
|
|
|