Index: chrome/utility/importer/bookmark_html_reader.cc |
diff --git a/chrome/utility/importer/bookmark_html_reader.cc b/chrome/utility/importer/bookmark_html_reader.cc |
index 5d34d7b191a817ce63ad6cf27df6cf68d6a56ce1..3c68b5d590bda13745faa991e2e096ef4aac4b60 100644 |
--- a/chrome/utility/importer/bookmark_html_reader.cc |
+++ b/chrome/utility/importer/bookmark_html_reader.cc |
@@ -116,6 +116,10 @@ void ImportBookmarksFile( |
if (internal::ParseCharsetFromLine(line, &charset)) |
continue; |
+ // Skip line with starts with <HR> tag. |
+ if (StartsWithASCII(line, "<HR>", false)) |
Peter Kasting
2013/08/09 20:57:28
This change should not be in this CL.
tfarina
2013/08/10 02:13:40
Ops, this shouldn't be here, this was for another
|
+ continue; |
+ |
// Get the folder name. |
if (internal::ParseFolderNameFromLine(line, |
charset, |