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

Unified Diff: Source/core/html/HTMLImageElement.h

Issue 1112513005: Reload image bypassing the cache (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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: Source/core/html/HTMLImageElement.h
diff --git a/Source/core/html/HTMLImageElement.h b/Source/core/html/HTMLImageElement.h
index bb2b283e38052c1f50d3107078d0f3a2e3f66581..28a4e9a84472eec9742e088cdc6da689828fb742 100644
--- a/Source/core/html/HTMLImageElement.h
+++ b/Source/core/html/HTMLImageElement.h
@@ -109,6 +109,8 @@ public:
float sourceSize(Element&);
+ HTMLImageLoader& imageLoader() const { return *m_imageLoader; }
+
protected:
explicit HTMLImageElement(Document&, HTMLFormElement* = 0, bool createdByParser = false);
@@ -145,7 +147,6 @@ private:
void resetFormOwner();
ImageCandidate findBestFitImageFromPictureParent();
void setBestFitURLAndDPRFromImageCandidate(const ImageCandidate&);
- HTMLImageLoader& imageLoader() const { return *m_imageLoader; }
void notifyViewportChanged();
void createMediaQueryListIfDoesNotExist();

Powered by Google App Engine
This is Rietveld 408576698