| Index: chrome/browser/sync_file_system/local/canned_syncable_file_system.cc
|
| diff --git a/chrome/browser/sync_file_system/local/canned_syncable_file_system.cc b/chrome/browser/sync_file_system/local/canned_syncable_file_system.cc
|
| index 2e6f1fcac4756fc2d6953b924c63f7940d922247..039f9daa5dc981f56fac8f5c27aff88937cc934f 100644
|
| --- a/chrome/browser/sync_file_system/local/canned_syncable_file_system.cc
|
| +++ b/chrome/browser/sync_file_system/local/canned_syncable_file_system.cc
|
| @@ -550,13 +550,13 @@ FileSystemOperationRunner* CannedSyncableFileSystem::operation_runner() {
|
| }
|
|
|
| void CannedSyncableFileSystem::OnSyncEnabled(const FileSystemURL& url) {
|
| - sync_status_observers_->Notify(&LocalFileSyncStatus::Observer::OnSyncEnabled,
|
| - url);
|
| + sync_status_observers_->Notify(
|
| + FROM_HERE, &LocalFileSyncStatus::Observer::OnSyncEnabled, url);
|
| }
|
|
|
| void CannedSyncableFileSystem::OnWriteEnabled(const FileSystemURL& url) {
|
| - sync_status_observers_->Notify(&LocalFileSyncStatus::Observer::OnWriteEnabled,
|
| - url);
|
| + sync_status_observers_->Notify(
|
| + FROM_HERE, &LocalFileSyncStatus::Observer::OnWriteEnabled, url);
|
| }
|
|
|
| void CannedSyncableFileSystem::DoOpenFileSystem(
|
|
|