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

Unified Diff: chrome/browser/sync/glue/shared_change_processor.cc

Issue 10696087: [Sync] Move ModelType and related classes to 'syncer' namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sort headers, update copyrights Created 8 years, 6 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/shared_change_processor.cc
diff --git a/chrome/browser/sync/glue/shared_change_processor.cc b/chrome/browser/sync/glue/shared_change_processor.cc
index dd252277f9a7c60ea0dddc149c3ed376e7e48a81..1e536d177bc97324366c8361c91fc0d6c2e2bcaa 100644
--- a/chrome/browser/sync/glue/shared_change_processor.cc
+++ b/chrome/browser/sync/glue/shared_change_processor.cc
@@ -17,7 +17,7 @@ namespace browser_sync {
SharedChangeProcessor::SharedChangeProcessor()
: disconnected_(false),
- type_(syncable::UNSPECIFIED),
+ type_(syncer::UNSPECIFIED),
sync_service_(NULL),
generic_change_processor_(NULL),
error_handler_(NULL) {
@@ -49,11 +49,11 @@ base::WeakPtr<syncer::SyncableService> SharedChangeProcessor::Connect(
ProfileSyncComponentsFactory* sync_factory,
ProfileSyncService* sync_service,
DataTypeErrorHandler* error_handler,
- syncable::ModelType type) {
+ syncer::ModelType type) {
DCHECK(sync_factory);
DCHECK(sync_service);
DCHECK(error_handler);
- DCHECK_NE(type, syncable::UNSPECIFIED);
+ DCHECK_NE(type, syncer::UNSPECIFIED);
backend_loop_ = base::MessageLoopProxy::current();
AutoLock lock(monitor_lock_);
if (disconnected_)
« no previous file with comments | « chrome/browser/sync/glue/shared_change_processor.h ('k') | chrome/browser/sync/glue/shared_change_processor_mock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698