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

Unified Diff: chrome/utility/importer/bookmark_html_reader.cc

Issue 21696003: views/location_bar: Eliminate TouchableLocationBarView. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 7 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/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,
« chrome/browser/ui/views/location_bar/location_icon_view.cc ('K') | « chrome/chrome_browser_ui.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698