Index: chrome/browser/sync_file_system/local/local_file_sync_service.cc |
diff --git a/chrome/browser/sync_file_system/local/local_file_sync_service.cc b/chrome/browser/sync_file_system/local/local_file_sync_service.cc |
index 51ab55a64687005c26b8e323bbeadded32da2284..b9c76f7469adef148d748559f66844d76d851da5 100644 |
--- a/chrome/browser/sync_file_system/local/local_file_sync_service.cc |
+++ b/chrome/browser/sync_file_system/local/local_file_sync_service.cc |
@@ -120,7 +120,7 @@ scoped_ptr<LocalFileSyncService> LocalFileSyncService::CreateForTesting( |
} |
LocalFileSyncService::~LocalFileSyncService() { |
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
+ DCHECK_CURRENTLY_ON(BrowserThread::UI); |
} |
void LocalFileSyncService::Shutdown() { |
@@ -350,7 +350,7 @@ LocalFileSyncService::LocalFileSyncService(Profile* profile, |
BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO) |
.get())), |
local_change_processor_(nullptr) { |
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
+ DCHECK_CURRENTLY_ON(BrowserThread::UI); |
sync_context_->AddOriginChangeObserver(this); |
} |