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

Unified Diff: third_party/WebKit/Source/platform/blob/BlobRegistry.cpp

Issue 2709033003: Migrate WTF::HashMap::get() to ::at() (Closed)
Patch Set: rebase Created 3 years, 10 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/platform/blob/BlobRegistry.cpp
diff --git a/third_party/WebKit/Source/platform/blob/BlobRegistry.cpp b/third_party/WebKit/Source/platform/blob/BlobRegistry.cpp
index 24a8f2ed2342dd196263468cf2ba9538a659e649..ff25b40c3a97eb89d7aa9b118657447fdd90dbaf 100644
--- a/third_party/WebKit/Source/platform/blob/BlobRegistry.cpp
+++ b/third_party/WebKit/Source/platform/blob/BlobRegistry.cpp
@@ -221,7 +221,7 @@ BlobOriginMap::BlobOriginMap() {
SecurityOrigin* BlobOriginMap::getOrigin(const KURL& url) {
if (url.protocolIs("blob"))
- return originMap()->get(url.getString());
+ return originMap()->at(url.getString());
return 0;
}

Powered by Google App Engine
This is Rietveld 408576698