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

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: mac fixes Created 5 years, 11 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..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.
+

Powered by Google App Engine
This is Rietveld 408576698