OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/utility/importer/bookmark_html_reader.h" | 5 #include "chrome/utility/importer/bookmark_html_reader.h" |
6 | 6 |
7 #include "base/callback.h" | 7 #include "base/callback.h" |
8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
9 #include "base/i18n/icu_string_conversions.h" | 9 #include "base/i18n/icu_string_conversions.h" |
10 #include "base/strings/string_number_conversions.h" | 10 #include "base/strings/string_number_conversions.h" |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 std::vector<base::string16> path; | 105 std::vector<base::string16> path; |
106 size_t toolbar_folder_index = 0; | 106 size_t toolbar_folder_index = 0; |
107 std::string charset; | 107 std::string charset; |
108 for (size_t i = 0; | 108 for (size_t i = 0; |
109 i < lines.size() && | 109 i < lines.size() && |
110 (cancellation_callback.is_null() || !cancellation_callback.Run()); | 110 (cancellation_callback.is_null() || !cancellation_callback.Run()); |
111 ++i) { | 111 ++i) { |
112 std::string line; | 112 std::string line; |
113 TrimString(lines[i], " ", &line); | 113 TrimString(lines[i], " ", &line); |
114 | 114 |
| 115 // Remove "<HR>" if |line| starts with it. "<HR>" is the bookmark entries |
| 116 // separator in Firefox that Chrome does not support. Note that there can be |
| 117 // multiple "<HR>" tags at the beginning of a single line. |
| 118 // See http://crbug.com/257474. |
| 119 static const char kHrTag[] = "<HR>"; |
| 120 while (StartsWithASCII(line, kHrTag, false)) { |
| 121 line.erase(0, arraysize(kHrTag) - 1); |
| 122 TrimString(line, " ", &line); |
| 123 } |
| 124 |
115 // Get the encoding of the bookmark file. | 125 // Get the encoding of the bookmark file. |
116 if (internal::ParseCharsetFromLine(line, &charset)) | 126 if (internal::ParseCharsetFromLine(line, &charset)) |
117 continue; | 127 continue; |
118 | 128 |
119 // Get the folder name. | 129 // Get the folder name. |
120 if (internal::ParseFolderNameFromLine(line, | 130 if (internal::ParseFolderNameFromLine(line, |
121 charset, | 131 charset, |
122 &last_folder, | 132 &last_folder, |
123 &last_folder_on_toolbar, | 133 &last_folder_on_toolbar, |
124 &last_folder_add_date)) { | 134 &last_folder_add_date)) { |
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
423 *url = GURL(value); | 433 *url = GURL(value); |
424 } | 434 } |
425 } | 435 } |
426 | 436 |
427 return true; | 437 return true; |
428 } | 438 } |
429 | 439 |
430 } // namespace internal | 440 } // namespace internal |
431 | 441 |
432 } // namespace bookmark_html_reader | 442 } // namespace bookmark_html_reader |
OLD | NEW |