Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Unified Diff: third_party/WebKit/Source/core/html/PublicURLManager.cpp

Issue 2810073002: Blink Rename follow-up: URLs --big-rename--> _ur_ls --this-fix--> _urls. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
}
}

Powered by Google App Engine
This is Rietveld 408576698