Chromium Code Reviews| 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..c5de9ac0c2241f9898bfe4bde3a70eaa11ad03c9 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(); |
| @@ -122,4 +126,5 @@ class BookmarkServerService : protected net::URLFetcherDelegate, |
| }; |
| } // namespace enhanced_bookmarks |
| -#endif // COMPONENTS_ENHANCED_BOOKMARKS_BOOKMARK_SERVER_SERVICE_H_ |
| +#endif // COMPONENTS_ENHANCED_BOOKMARKS_BOOKMARK_SERVER_SERVICE_H_/home/tfarina/chromium/src/buildtools/linux64/clang-format |
|
sky
2015/02/03 17:08:37
Fix this one too.
tfarina
2015/02/04 20:51:14
Done.
|
| + |