| Index: chrome/browser/bookmarks/bookmark_codec.h
|
| diff --git a/chrome/browser/bookmarks/bookmark_codec.h b/chrome/browser/bookmarks/bookmark_codec.h
|
| index ce8861701192d5411003db70c9fcf8774862d0da..d35c735bbef495f035523b5acdf6f47ef80d8edf 100644
|
| --- a/chrome/browser/bookmarks/bookmark_codec.h
|
| +++ b/chrome/browser/bookmarks/bookmark_codec.h
|
| @@ -157,7 +157,7 @@ class BookmarkCodec {
|
|
|
| // Updates the check-sum with the given string.
|
| void UpdateChecksum(const std::string& str);
|
| - void UpdateChecksum(const string16& str);
|
| + void UpdateChecksum(const base::string16& str);
|
|
|
| // Updates the check-sum with the given contents of URL/folder bookmark node.
|
| // NOTE: These functions take in individual properties of a bookmark node
|
| @@ -166,10 +166,10 @@ class BookmarkCodec {
|
| // and once for computing the check-sum.
|
| // The url parameter should be a valid UTF8 string.
|
| void UpdateChecksumWithUrlNode(const std::string& id,
|
| - const string16& title,
|
| + const base::string16& title,
|
| const std::string& url);
|
| void UpdateChecksumWithFolderNode(const std::string& id,
|
| - const string16& title);
|
| + const base::string16& title);
|
|
|
| // Initializes/Finalizes the checksum.
|
| void InitializeChecksum();
|
|
|