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

Unified Diff: content/renderer/image_loading_helper.h

Issue 934693002: Reload favicon from HTTP cache on Ctrl+Refresh (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « content/renderer/fetchers/resource_fetcher_impl.cc ('k') | content/renderer/image_loading_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/image_loading_helper.h
diff --git a/content/renderer/image_loading_helper.h b/content/renderer/image_loading_helper.h
index 185f3b7e4f1db53bd9f8c4ebb5f3da7d8721b0b5..d5daf8fa517966f3e11d719238283cc3672a0dae 100644
--- a/content/renderer/image_loading_helper.h
+++ b/content/renderer/image_loading_helper.h
@@ -31,7 +31,8 @@ class ImageLoadingHelper : public RenderFrameObserver {
void OnDownloadImage(int id,
const GURL& image_url,
bool is_favicon,
- uint32_t max_image_size);
+ uint32_t max_image_size,
+ bool bypass_cache);
// Requests to download an image. When done, the ImageLoadingHelper
// is notified by way of DidDownloadImage. Returns true if the
@@ -46,7 +47,8 @@ class ImageLoadingHelper : public RenderFrameObserver {
bool DownloadImage(int id,
const GURL& image_url,
bool is_favicon,
- uint32_t max_image_size);
+ uint32_t max_image_size,
+ bool bypass_cache);
// This callback is triggered when DownloadImage completes, either
// succesfully or with a failure. See DownloadImage for more
« no previous file with comments | « content/renderer/fetchers/resource_fetcher_impl.cc ('k') | content/renderer/image_loading_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698