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_ |
+ |