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

Unified Diff: chrome/browser/instant/instant_loader.cc

Issue 6651014: Applied the IconType. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: sync 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/instant/instant_loader.cc
diff --git a/chrome/browser/instant/instant_loader.cc b/chrome/browser/instant/instant_loader.cc
index 01947651649932514bda8ed8be885f97aa2f0722..c47d916a392067e40b8ef586194d82f05003ba31 100644
--- a/chrome/browser/instant/instant_loader.cc
+++ b/chrome/browser/instant/instant_loader.cc
@@ -320,7 +320,8 @@ void InstantLoader::TabContentsDelegateImpl::CommitHistory(
&image_data);
favicon_service->SetFavicon(active_entry->url(),
active_entry->favicon().url(),
- image_data);
+ image_data,
+ history::FAVICON);
if (supports_instant && !add_page_vector_.empty()) {
// If we're using the instant API, then we've tweaked the url that is
// going to be added to history. We need to also set the favicon for the
@@ -328,7 +329,8 @@ void InstantLoader::TabContentsDelegateImpl::CommitHistory(
// for details).
favicon_service->SetFavicon(add_page_vector_.back()->url,
active_entry->favicon().url(),
- image_data);
+ image_data,
+ history::FAVICON);
}
}
}

Powered by Google App Engine
This is Rietveld 408576698