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

Unified Diff: chrome/browser/sync/glue/bookmark_change_processor.h

Issue 408003002: [Sync] Fix namespace for sync_driver component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 5 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: chrome/browser/sync/glue/bookmark_change_processor.h
diff --git a/chrome/browser/sync/glue/bookmark_change_processor.h b/chrome/browser/sync/glue/bookmark_change_processor.h
index 79e8bd4c88ffefb644cf66f7f953be4e1bd3de30..88909a0ba8f084332fef811b28e80cc1dc192458 100644
--- a/chrome/browser/sync/glue/bookmark_change_processor.h
+++ b/chrome/browser/sync/glue/bookmark_change_processor.h
@@ -33,11 +33,11 @@ namespace browser_sync {
// All operations and use of this class are from the UI thread.
// This is currently bookmarks specific.
class BookmarkChangeProcessor : public BookmarkModelObserver,
- public ChangeProcessor {
+ public sync_driver::ChangeProcessor {
public:
BookmarkChangeProcessor(Profile* profile,
BookmarkModelAssociator* model_associator,
- DataTypeErrorHandler* error_handler);
+ sync_driver::DataTypeErrorHandler* error_handler);
virtual ~BookmarkChangeProcessor();
// BookmarkModelObserver implementation.
@@ -131,14 +131,14 @@ class BookmarkChangeProcessor : public BookmarkModelObserver,
int index,
syncer::WriteTransaction* trans,
BookmarkModelAssociator* associator,
- DataTypeErrorHandler* error_handler);
+ sync_driver::DataTypeErrorHandler* error_handler);
// Update |bookmark_node|'s sync node.
static int64 UpdateSyncNode(const BookmarkNode* bookmark_node,
BookmarkModel* model,
syncer::WriteTransaction* trans,
BookmarkModelAssociator* associator,
- DataTypeErrorHandler* error_handler);
+ sync_driver::DataTypeErrorHandler* error_handler);
// Update transaction version of |model| and |nodes| to |new_version| if
// it's valid.

Powered by Google App Engine
This is Rietveld 408576698