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

Unified Diff: chrome/browser/bookmarks/bookmark_codec.h

Issue 105193002: Replace string16 with base::string16. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/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();
« no previous file with comments | « chrome/browser/background/background_mode_manager_win.cc ('k') | chrome/browser/bookmarks/bookmark_codec.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698