| 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 b801c8f4133a61aea38c1fb88547b2dee894e1b4..e680c106e2e3efe8f7930c3d23c731bb6660dbff 100644
|
| --- a/third_party/WebKit/Source/core/html/PublicURLManager.cpp
|
| +++ b/third_party/WebKit/Source/core/html/PublicURLManager.cpp
|
| @@ -77,8 +77,8 @@ void PublicURLManager::Revoke(const String& uuid) {
|
| Vector<String> urls_to_remove;
|
| for (auto& registry_url : registry_to_url_) {
|
| URLRegistry* registry = registry_url.key;
|
| - URLMap& registered_ur_ls = registry_url.value;
|
| - for (auto& registered_url : registered_ur_ls) {
|
| + URLMap& registered_urls = registry_url.value;
|
| + for (auto& registered_url : registered_urls) {
|
| if (uuid == registered_url.value) {
|
| KURL url(kParsedURLString, registered_url.key);
|
| GetExecutionContext()->RemoveURLFromMemoryCache(url);
|
| @@ -87,7 +87,7 @@ void PublicURLManager::Revoke(const String& uuid) {
|
| }
|
| }
|
| for (const auto& url : urls_to_remove)
|
| - registered_ur_ls.erase(url);
|
| + registered_urls.erase(url);
|
| urls_to_remove.Clear();
|
| }
|
| }
|
|
|