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

Unified Diff: chrome/browser/extensions/extension_function_dispatcher.cc

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/extensions/extension_function_dispatcher.cc
diff --git a/chrome/browser/extensions/extension_function_dispatcher.cc b/chrome/browser/extensions/extension_function_dispatcher.cc
index cbfc0c59a89dd4e043e0ea6ed2b3c3293e75d96a..4a710da13a039f44230c1394ef5873aa4c2418d7 100644
--- a/chrome/browser/extensions/extension_function_dispatcher.cc
+++ b/chrome/browser/extensions/extension_function_dispatcher.cc
@@ -401,7 +401,8 @@ ExtensionFunctionDispatcher::ExtensionFunctionDispatcher(
// to make sure that the FaviconSource is registered with the
// ChromeURLDataManager.
if (extension->HasHostPermission(GURL(chrome::kChromeUIFaviconURL))) {
- FaviconSource* favicon_source = new FaviconSource(profile_);
+ FaviconSource* favicon_source = new FaviconSource(profile_,
+ chrome::kChromeUIFaviconURL);
profile_->GetChromeURLDataManager()->AddDataSource(favicon_source);
}

Powered by Google App Engine
This is Rietveld 408576698