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

Unified Diff: components/enhanced_bookmarks/bookmark_server_service.h

Issue 865163003: bookmarks: Move BookmarkNode into 'bookmarks' namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: enhanced_bookmarks fix Created 5 years, 10 months 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: components/enhanced_bookmarks/bookmark_server_service.h
diff --git a/components/enhanced_bookmarks/bookmark_server_service.h b/components/enhanced_bookmarks/bookmark_server_service.h
index 9f2fd52e91e9ea7e4a33558b92df43fb7c5ab2c2..4519033236478f5bae4c88b97b813e3bbe9d2437 100644
--- a/components/enhanced_bookmarks/bookmark_server_service.h
+++ b/components/enhanced_bookmarks/bookmark_server_service.h
@@ -17,7 +17,10 @@
class ProfileOAuth2TokenService;
class SigninManagerBase;
+
+namespace bookmarks {
class BookmarkNode;
+}
namespace enhanced_bookmarks {
@@ -53,9 +56,10 @@ class BookmarkServerService : protected net::URLFetcherDelegate,
protected:
// Retrieves a bookmark by using its remote id. Returns null if nothing
// matches.
- virtual const BookmarkNode* BookmarkForRemoteId(
+ virtual const bookmarks::BookmarkNode* BookmarkForRemoteId(
const std::string& remote_id) const;
- const std::string RemoteIDForBookmark(const BookmarkNode* bookmark) const;
+ const std::string RemoteIDForBookmark(
+ const bookmarks::BookmarkNode* bookmark) const;
// Cancels the ongoing request, if any.
void Cancel();
@@ -123,3 +127,4 @@ class BookmarkServerService : protected net::URLFetcherDelegate,
} // namespace enhanced_bookmarks
#endif // COMPONENTS_ENHANCED_BOOKMARKS_BOOKMARK_SERVER_SERVICE_H_
+

Powered by Google App Engine
This is Rietveld 408576698