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

Unified Diff: third_party/WebKit/Source/core/loader/ImageLoader.cpp

Issue 1774943003: blink: Rename platform/ methods to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-platform: rebase-yayyyyyyyy Created 4 years, 9 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/loader/ImageLoader.cpp
diff --git a/third_party/WebKit/Source/core/loader/ImageLoader.cpp b/third_party/WebKit/Source/core/loader/ImageLoader.cpp
index f13a418ed234ee708686c85f91588839acf6ab5d..98e34319cab165988e75da47b316cc8eededc67b 100644
--- a/third_party/WebKit/Source/core/loader/ImageLoader.cpp
+++ b/third_party/WebKit/Source/core/loader/ImageLoader.cpp
@@ -469,8 +469,8 @@ void ImageLoader::notifyFinished(Resource* resource)
updateLayoutObject();
- if (m_image && m_image->image() && m_image->image()->isSVGImage())
- toSVGImage(m_image->image())->updateUseCounters(element()->document());
+ if (m_image && m_image->getImage() && m_image->getImage()->isSVGImage())
+ toSVGImage(m_image->getImage())->updateUseCounters(element()->document());
if (!m_hasPendingLoadEvent)
return;

Powered by Google App Engine
This is Rietveld 408576698