| Index: chrome/browser/bookmarks/bookmark_html_writer.cc
|
| ===================================================================
|
| --- chrome/browser/bookmarks/bookmark_html_writer.cc (revision 19491)
|
| +++ chrome/browser/bookmarks/bookmark_html_writer.cc (working copy)
|
| @@ -166,12 +166,12 @@
|
|
|
| switch (type) {
|
| case ATTRIBUTE_VALUE:
|
| - // Convert " to \"
|
| + // Convert " to "
|
| if (text.find(L"\"") != std::wstring::npos) {
|
| string16 replaced_string = WideToUTF16Hack(text);
|
| ReplaceSubstringsAfterOffset(&replaced_string, 0,
|
| ASCIIToUTF16("\""),
|
| - ASCIIToUTF16("\\\""));
|
| + ASCIIToUTF16("""));
|
| utf8_string = UTF16ToUTF8(replaced_string);
|
| } else {
|
| utf8_string = WideToUTF8(text);
|
|
|