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

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

Issue 616763002: Importing certain bookmarks from firefox and HTML file as search engines. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 6 years, 2 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/in_process_importer_bridge.cc
diff --git a/chrome/browser/importer/in_process_importer_bridge.cc b/chrome/browser/importer/in_process_importer_bridge.cc
index 853788ea8c1c3070adcd4aa19b91ba8f82917868..70fab6695531a78406f891c1a0a31175562dbfb4 100644
--- a/chrome/browser/importer/in_process_importer_bridge.cc
+++ b/chrome/browser/importer/in_process_importer_bridge.cc
@@ -101,25 +101,24 @@ class FirefoxURLParameterFilter : public TemplateURLParser::ParameterFilter {
DISALLOW_COPY_AND_ASSIGN(FirefoxURLParameterFilter);
};
-// Creates a TemplateURL with the |keyword| and |url|. |title| may be empty.
+// Creates a TemplateURL with the |keyword| and |raw_url|. |title| may be empty.
Peter Kasting 2014/10/07 23:17:38 This comment should probably also talk about what
Tapu Ghose 2014/10/12 00:58:20 Done.
// This function transfers ownership of the created TemplateURL to the caller.
TemplateURL* CreateTemplateURL(const base::string16& title,
const base::string16& keyword,
- const GURL& url) {
- // Skip if the url is invalid.
- if (!url.is_valid())
+ const base::string16& raw_url) {
Ilya Sherman 2014/10/07 22:08:22 nit: You might as well drop the "raw" prefix at th
Tapu Ghose 2014/10/12 00:58:20 Dropped "raw" prefix. Here, the url can be either
+ // Skip if the |raw_url| is empty.
Peter Kasting 2014/10/07 23:17:38 This comment just restates the code. Instead, if
Tapu Ghose 2014/10/12 00:58:20 Agree with you.
+ if (raw_url.empty())
return NULL;
TemplateURLData data;
if (keyword.empty())
- data.SetKeyword(TemplateURL::GenerateKeyword(url));
+ data.SetKeyword(TemplateURL::GenerateKeyword(GURL(raw_url)));
Peter Kasting 2014/10/07 23:17:38 This assumes that |raw_url| will construct a valid
Tapu Ghose 2014/10/12 00:58:20 The assumption is not guaranteed. Updated logic so
else
data.SetKeyword(keyword);
// We set short name by using the title if it exists.
// Otherwise, we use the shortcut.
data.short_name = title.empty() ? keyword : title;
- data.SetURL(
- TemplateURLRef::DisplayURLToURLRef(base::UTF8ToUTF16(url.spec())));
+ data.SetURL(TemplateURLRef::DisplayURLToURLRef(raw_url));
return new TemplateURL(data);
}
@@ -238,7 +237,7 @@ void InProcessImporterBridge::SetKeywords(
owned_template_urls.push_back(
CreateTemplateURL(url_keywords[i].display_name,
url_keywords[i].keyword,
- url_keywords[i].url));
+ url_keywords[i].raw_url));
}
BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
base::Bind(&ProfileWriter::AddKeywords, writer_,

Powered by Google App Engine
This is Rietveld 408576698