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

Unified Diff: chrome/browser/bookmarks/bookmark_tag_model.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
« no previous file with comments | « chrome/browser/bookmarks/bookmark_service.h ('k') | chrome/browser/bookmarks/bookmark_tag_model.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/bookmarks/bookmark_tag_model.h
diff --git a/chrome/browser/bookmarks/bookmark_tag_model.h b/chrome/browser/bookmarks/bookmark_tag_model.h
index b30e565cc37d53aef5ab38cac7eecc113a9d8087..01fcbf2646a9c59dd96a5429083778fb0af05d38 100644
--- a/chrome/browser/bookmarks/bookmark_tag_model.h
+++ b/chrome/browser/bookmarks/bookmark_tag_model.h
@@ -10,7 +10,7 @@
class BookmarkTagModelObserver;
-typedef string16 BookmarkTag;
+typedef base::string16 BookmarkTag;
// BookmarTagModel provides a way to access and manipulate bookmarks in a
// non-hierarchical way. BookmarkTagModel view the bookmarks as a flat list,
@@ -76,7 +76,7 @@ class BookmarkTagModel : public BookmarkModelObserver {
const gfx::Image& GetFavicon(const BookmarkNode* bookmark);
// Sets the title of |node|.
- void SetTitle(const BookmarkNode* bookmark, const string16& title);
+ void SetTitle(const BookmarkNode* bookmark, const base::string16& title);
// Sets the URL of |node|.
void SetURL(const BookmarkNode* bookmark, const GURL& url);
@@ -89,7 +89,7 @@ class BookmarkTagModel : public BookmarkModelObserver {
const BookmarkNode* GetMostRecentlyAddedBookmarkForURL(const GURL& url);
// Creates a new bookmark.
- const BookmarkNode* AddURL(const string16& title,
+ const BookmarkNode* AddURL(const base::string16& title,
const GURL& url,
const std::set<BookmarkTag>& tags);
« no previous file with comments | « chrome/browser/bookmarks/bookmark_service.h ('k') | chrome/browser/bookmarks/bookmark_tag_model.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698