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

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

Issue 11411180: move favicon download code from chrome/ into content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix order Created 8 years 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/public/browser/web_contents.h ('k') | content/public/common/favicon_url.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/web_contents_observer.h
diff --git a/content/public/browser/web_contents_observer.h b/content/public/browser/web_contents_observer.h
index 87f5f7e2cc27117b65d464f0e83f83442803b00f..a037efb70a67e021af4dd95794684f557affd038 100644
--- a/content/public/browser/web_contents_observer.h
+++ b/content/public/browser/web_contents_observer.h
@@ -19,6 +19,7 @@ namespace content {
class RenderViewHost;
class WebContents;
class WebContentsImpl;
+struct FaviconURL;
struct FrameNavigateParams;
struct LoadCommittedDetails;
struct Referrer;
@@ -142,6 +143,10 @@ class CONTENT_EXPORT WebContentsObserver : public IPC::Listener,
virtual void DidBlock3DAPIs(const GURL& url,
ThreeDAPIType requester) {}
+ // Invoked when new FaviconURL candidates are received from the renderer.
+ virtual void DidUpdateFaviconURL(int32 page_id,
+ const std::vector<FaviconURL>& candidates) {}
+
// IPC::Listener implementation.
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
« no previous file with comments | « content/public/browser/web_contents.h ('k') | content/public/common/favicon_url.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698