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

Unified Diff: chrome/browser/importer/importer_bridge.cc

Issue 6693021: fav icon -> favicon. Pass 5: fav_icon -> favicon (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
« no previous file with comments | « chrome/browser/importer/importer_bridge.h ('k') | chrome/browser/jumplist_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/importer/importer_bridge.cc
diff --git a/chrome/browser/importer/importer_bridge.cc b/chrome/browser/importer/importer_bridge.cc
index c7afd1a3f9df0bf2b7a4c6312abbb1ea04ce2b07..39b95d550379a2b69acdcd5620bf62f7bead859f 100644
--- a/chrome/browser/importer/importer_bridge.cc
+++ b/chrome/browser/importer/importer_bridge.cc
@@ -58,10 +58,10 @@ void InProcessImporterBridge::AddIE7PasswordInfo(
#endif // OS_WIN
void InProcessImporterBridge::SetFavicons(
- const std::vector<history::ImportedFavIconUsage>& fav_icons) {
+ const std::vector<history::ImportedFavIconUsage>& favicons) {
BrowserThread::PostTask(
BrowserThread::UI, FROM_HERE,
- NewRunnableMethod(writer_, &ProfileWriter::AddFavicons, fav_icons));
+ NewRunnableMethod(writer_, &ProfileWriter::AddFavicons, favicons));
}
void InProcessImporterBridge::SetHistoryItems(
@@ -152,8 +152,8 @@ void ExternalProcessImporterBridge::AddIE7PasswordInfo(
#endif
void ExternalProcessImporterBridge::SetFavicons(
- const std::vector<history::ImportedFavIconUsage>& fav_icons) {
- profile_import_thread_->NotifyFavIconsImportReady(fav_icons);
+ const std::vector<history::ImportedFavIconUsage>& favicons) {
+ profile_import_thread_->NotifyFavIconsImportReady(favicons);
}
void ExternalProcessImporterBridge::SetHistoryItems(
« no previous file with comments | « chrome/browser/importer/importer_bridge.h ('k') | chrome/browser/jumplist_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698