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

Unified Diff: chrome/browser/favicon/favicon_download_helper_delegate.h

Issue 11195010: Extract Favicon Download logic from FaviconTabHelper (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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 | « chrome/browser/favicon/favicon_download_helper.cc ('k') | chrome/browser/favicon/favicon_tab_helper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/favicon/favicon_download_helper_delegate.h
diff --git a/chrome/browser/favicon/favicon_download_helper_delegate.h b/chrome/browser/favicon/favicon_download_helper_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..49086f196a0041695caa6bd2157586cc86f7cde0
--- /dev/null
+++ b/chrome/browser/favicon/favicon_download_helper_delegate.h
@@ -0,0 +1,36 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_FAVICON_FAVICON_DOWNLOAD_HELPER_DELEGATE_H_
+#define CHROME_BROWSER_FAVICON_FAVICON_DOWNLOAD_HELPER_DELEGATE_H_
+
+#include <vector>
+
+class GURL;
+class SkBitmap;
+struct FaviconURL;
+
+// This class provides a delegate interface for a FaviconDownloadHelper. It
+// allows the FaviconDownloadHelper to pass favicon data back to its caller.
+class FaviconDownloadHelperDelegate {
+ public:
+ // Called when the icon at |image_url| has been downloaded.
+ // |bitmaps| is a list of all the frames of the icon at |image_url|.
+ virtual void OnDidDownloadFavicon(
+ int id,
+ const GURL& image_url,
+ bool errored,
+ int requested_size,
+ const std::vector<SkBitmap>& bitmaps) = 0;
+
+ // Message Handler.
+ virtual void OnUpdateFaviconURL(
+ int32 page_id,
+ const std::vector<FaviconURL>& candidates) = 0;
+
+ protected:
+ virtual ~FaviconDownloadHelperDelegate() {}
+};
+
+#endif // CHROME_BROWSER_FAVICON_FAVICON_DOWNLOAD_HELPER_DELEGATE_H_
« no previous file with comments | « chrome/browser/favicon/favicon_download_helper.cc ('k') | chrome/browser/favicon/favicon_tab_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698