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

Unified Diff: chrome/browser/ui/webui/favicon_source.h

Issue 6672065: Support touch icon in FaviconHelper (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix some style issues Created 9 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: chrome/browser/ui/webui/favicon_source.h
diff --git a/chrome/browser/ui/webui/favicon_source.h b/chrome/browser/ui/webui/favicon_source.h
index 848829ec9545290c1ea9ec8fb15297ba7caf7236..db21048fa4cf3953ac72036fc1fd25a7180b32c9 100644
--- a/chrome/browser/ui/webui/favicon_source.h
+++ b/chrome/browser/ui/webui/favicon_source.h
@@ -20,7 +20,7 @@ class Profile;
// requests for favicons and the history backend that serves these.
class FaviconSource : public ChromeURLDataManager::DataSource {
public:
- explicit FaviconSource(Profile* profile);
+ FaviconSource(Profile* profile, const std::string& favicon_host);
sky 2011/03/22 19:48:48 This isn't related to this patch, right? Please ke
michaelbai 2011/03/22 23:59:03 Move them to another CL
// Called when the network layer has requested a resource underneath
// the path we registered.
@@ -49,6 +49,9 @@ class FaviconSource : public ChromeURLDataManager::DataSource {
// database doesn't have a favicon for a webpage.
scoped_refptr<RefCountedMemory> default_favicon_;
+ // The types of icon that this FaviconSource handles.
+ const int icon_types_;
+
DISALLOW_COPY_AND_ASSIGN(FaviconSource);
};

Powered by Google App Engine
This is Rietveld 408576698