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

Unified Diff: content/public/browser/web_contents.h

Issue 12945007: Fix Notifications Icon loading. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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: content/public/browser/web_contents.h
diff --git a/content/public/browser/web_contents.h b/content/public/browser/web_contents.h
index dfbe07329ce4fe751912def4a4bcc6b6ae28e356..053530735f95a1b85cca4bd052d5978464441731 100644
--- a/content/public/browser/web_contents.h
+++ b/content/public/browser/web_contents.h
@@ -15,6 +15,7 @@
#include "content/public/browser/page_navigator.h"
#include "content/public/browser/save_page_type.h"
#include "content/public/browser/web_ui.h"
+#include "content/public/common/content_constants.h"
#include "ipc/ipc_sender.h"
#include "third_party/skia/include/core/SkColor.h"
#include "ui/base/window_open_disposition.h"
@@ -426,7 +427,9 @@ class WebContents : public PageNavigator,
// |image_size| is a hint for images with multiple sizes. The downloaded image
joth 2013/03/19 22:44:31 |image_type| ...
Dmitry Titov 2013/03/20 01:10:07 Done.
// is not resized to the given image_size. If 0 is passed, the first frame of
// the image is returned.
Cait (Slow) 2013/03/20 00:04:56 please add a note explaining the purpose of the Do
Dmitry Titov 2013/03/20 01:10:07 Done.
- virtual int DownloadFavicon(const GURL& url, int image_size,
+ virtual int DownloadFavicon(const GURL& url,
+ DownloadImageType image_type,
+ int image_size,
const FaviconDownloadCallback& callback) = 0;
private:

Powered by Google App Engine
This is Rietveld 408576698