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

Unified Diff: third_party/WebKit/Source/core/layout/svg/SVGResourcesCache.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/core/layout/svg/SVGResourcesCache.cpp
diff --git a/third_party/WebKit/Source/core/layout/svg/SVGResourcesCache.cpp b/third_party/WebKit/Source/core/layout/svg/SVGResourcesCache.cpp
index 5422c57f26f73dbef20bcc70007e23e968304288..60408d1260a700f5abf3a978392be07a101a808b 100644
--- a/third_party/WebKit/Source/core/layout/svg/SVGResourcesCache.cpp
+++ b/third_party/WebKit/Source/core/layout/svg/SVGResourcesCache.cpp
@@ -81,7 +81,7 @@ static inline SVGResourcesCache& resourcesCache(Document& document) {
SVGResources* SVGResourcesCache::cachedResourcesForLayoutObject(
const LayoutObject* layoutObject) {
ASSERT(layoutObject);
- return resourcesCache(layoutObject->document()).m_cache.get(layoutObject);
+ return resourcesCache(layoutObject->document()).m_cache.at(layoutObject);
}
void SVGResourcesCache::clientLayoutChanged(LayoutObject* object) {

Powered by Google App Engine
This is Rietveld 408576698