| Index: chrome/browser/ui/webui/options/import_data_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/import_data_handler.cc b/chrome/browser/ui/webui/options/import_data_handler.cc
|
| index c87759f0eaf0c682e213c56ee50150d8c03db29e..4f338e674612282f91c45cf6b66333af4a64443d 100644
|
| --- a/chrome/browser/ui/webui/options/import_data_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/import_data_handler.cc
|
| @@ -185,6 +185,17 @@ void ImportDataHandler::InitializePage() {
|
| browser_profiles.Append(browser_profile);
|
| }
|
|
|
| + DictionaryValue* bookmarks_profile = new DictionaryValue();
|
| + bookmarks_profile->SetString(
|
| + "name", l10n_util::GetStringUTF16(IDS_IMPORT_FROM_BOOKMARKS_HTML_FILE));
|
| + bookmarks_profile->SetInteger("index", browser_profiles.GetSize());
|
| + bookmarks_profile->SetBoolean("history", false);
|
| + bookmarks_profile->SetBoolean("favorites", true);
|
| + bookmarks_profile->SetBoolean("passwords", false);
|
| + bookmarks_profile->SetBoolean("search", false);
|
| + bookmarks_profile->SetBoolean("show_bottom_bar", false);
|
| + browser_profiles.Append(bookmarks_profile);
|
| +
|
| web_ui()->CallJavascriptFunction("ImportDataOverlay.updateSupportedBrowsers",
|
| browser_profiles);
|
| }
|
|
|