Chromium Code Reviews| Index: chrome/browser/bookmarks/bookmark_codec.cc |
| =================================================================== |
| --- chrome/browser/bookmarks/bookmark_codec.cc (revision 10641) |
| +++ chrome/browser/bookmarks/bookmark_codec.cc (working copy) |
| @@ -176,7 +176,8 @@ |
| node = new BookmarkNode(model, GURL()); |
| node->type_ = history::StarredEntry::USER_GROUP; |
| node->date_group_modified_ = |
| - Time::FromInternalValue(StringToInt64(last_modified_date)); |
| + Time::FromInternalValue(StringToInt64( |
| + WideToUTF16Hack(last_modified_date))); |
|
brettw
2009/02/27 23:45:15
Don't wrap 4 spaces from random parts of the line.
|
| if (parent) |
| parent->Add(parent->GetChildCount(), node); |
| @@ -187,6 +188,7 @@ |
| node->SetTitle(title); |
| node->date_added_ = |
| - Time::FromInternalValue(StringToInt64(date_added_string)); |
| + Time::FromInternalValue(StringToInt64(WideToUTF16Hack( |
| + date_added_string))); |
| return true; |
| } |