Commit 367a6cef authored by tfarina@chromium.org's avatar tfarina@chromium.org

Display "Imported" folder name again.

During the conversion to out of process this seems to have popped out.
See https://chromiumcodereview.appspot.com/17379006.

BUG=256162
TEST=open chrome, bookmark some pages, go to Bookmark Manager, export the
bookmarks to HTML file. Then, import it, there should be a folder named
"Imported" again.
R=gab@chromium.org
NOTRY=true

Review URL: https://chromiumcodereview.appspot.com/19435002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@212409 0039d316-1c4b-4281-b951-d872f2087c98
parent 56840fae
...@@ -295,6 +295,9 @@ void ExternalProcessImporterClient::StartProcessOnIOThread( ...@@ -295,6 +295,9 @@ void ExternalProcessImporterClient::StartProcessOnIOThread(
// Dictionary of all localized strings that could be needed by the importer // Dictionary of all localized strings that could be needed by the importer
// in the external process. // in the external process.
DictionaryValue localized_strings; DictionaryValue localized_strings;
localized_strings.SetString(
base::IntToString(IDS_BOOKMARK_GROUP),
l10n_util::GetStringUTF8(IDS_BOOKMARK_GROUP));
localized_strings.SetString( localized_strings.SetString(
base::IntToString(IDS_BOOKMARK_GROUP_FROM_FIREFOX), base::IntToString(IDS_BOOKMARK_GROUP_FROM_FIREFOX),
l10n_util::GetStringUTF8(IDS_BOOKMARK_GROUP_FROM_FIREFOX)); l10n_util::GetStringUTF8(IDS_BOOKMARK_GROUP_FROM_FIREFOX));
...@@ -304,6 +307,9 @@ void ExternalProcessImporterClient::StartProcessOnIOThread( ...@@ -304,6 +307,9 @@ void ExternalProcessImporterClient::StartProcessOnIOThread(
localized_strings.SetString( localized_strings.SetString(
base::IntToString(IDS_IMPORT_FROM_FIREFOX), base::IntToString(IDS_IMPORT_FROM_FIREFOX),
l10n_util::GetStringUTF8(IDS_IMPORT_FROM_FIREFOX)); l10n_util::GetStringUTF8(IDS_IMPORT_FROM_FIREFOX));
localized_strings.SetString(
base::IntToString(IDS_IMPORT_FROM_ICEWEASEL),
l10n_util::GetStringUTF8(IDS_IMPORT_FROM_ICEWEASEL));
localized_strings.SetString( localized_strings.SetString(
base::IntToString(IDS_IMPORT_FROM_SAFARI), base::IntToString(IDS_IMPORT_FROM_SAFARI),
l10n_util::GetStringUTF8(IDS_IMPORT_FROM_SAFARI)); l10n_util::GetStringUTF8(IDS_IMPORT_FROM_SAFARI));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment