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

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

Issue 10830098: Get the Firefox branding name dynamically (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 4 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/importer/importer_list.cc
===================================================================
--- chrome/browser/importer/importer_list.cc (revision 148898)
+++ chrome/browser/importer/importer_list.cc (working copy)
@@ -75,12 +75,11 @@
} else if (version >= 3) {
firefox_type = importer::TYPE_FIREFOX3;
} else {
- // Ignores other versions of firefox.
return;
}
Ilya Sherman 2012/08/07 21:52:21 nit: If you're removing the comment from the final
cristian.patrasciuc 2012/08/08 15:20:52 Done.
importer::SourceProfile* firefox = new importer::SourceProfile;
- firefox->importer_name = l10n_util::GetStringUTF16(IDS_IMPORT_FROM_FIREFOX);
+ firefox->importer_name = GetFirefoxImporterName(app_path);
firefox->importer_type = firefox_type;
firefox->source_path = profile_path;
#if defined(OS_WIN)

Powered by Google App Engine
This is Rietveld 408576698