| Index: chrome/browser/sync/syncable/syncable.cc
|
| diff --git a/chrome/browser/sync/syncable/syncable.cc b/chrome/browser/sync/syncable/syncable.cc
|
| index 2794efababc33431c0c961bed2f3be7292ddf930..99bed4ee35657eab685fb6425937de7b38911a59 100644
|
| --- a/chrome/browser/sync/syncable/syncable.cc
|
| +++ b/chrome/browser/sync/syncable/syncable.cc
|
| @@ -578,7 +578,7 @@ bool Directory::SaveChanges() {
|
| bool success = false;
|
| DCHECK(store_);
|
|
|
| - AutoLock scoped_lock(kernel_->save_changes_mutex);
|
| + base::AutoLock scoped_lock(kernel_->save_changes_mutex);
|
|
|
| // Snapshot and save.
|
| SaveChangesSnapshot snapshot;
|
| @@ -1129,7 +1129,7 @@ bool BaseTransaction::NotifyTransactionChangingAndEnding(
|
| {
|
| // Scoped_lock is only active through the calculate_changes and
|
| // transaction_ending events.
|
| - AutoLock scoped_lock(dirkernel_->changes_channel_mutex);
|
| + base::AutoLock scoped_lock(dirkernel_->changes_channel_mutex);
|
|
|
| // Tell listeners to calculate changes while we still have the mutex.
|
| DirectoryChangeEvent event = { DirectoryChangeEvent::CALCULATE_CHANGES,
|
|
|