| Index: chrome/browser/sync_file_system/drive_file_sync_service.cc
|
| diff --git a/chrome/browser/sync_file_system/drive_file_sync_service.cc b/chrome/browser/sync_file_system/drive_file_sync_service.cc
|
| index a362e239cd61100f64976d9c8cae6fcb9d31a70a..84222cecad3aadaa65c0ce986420ee90db9705d1 100644
|
| --- a/chrome/browser/sync_file_system/drive_file_sync_service.cc
|
| +++ b/chrome/browser/sync_file_system/drive_file_sync_service.cc
|
| @@ -436,7 +436,6 @@ const char* DriveFileSyncService::GetServiceName() const {
|
| void DriveFileSyncService::ApplyLocalChange(
|
| const fileapi::FileChange& local_file_change,
|
| const FilePath& local_file_path,
|
| - const fileapi::SyncFileMetadata& local_file_metadata,
|
| const fileapi::FileSystemURL& url,
|
| const fileapi::SyncStatusCallback& callback) {
|
| // TODO(nhiroki): support directory operations (http://crbug.com/161442).
|
| @@ -447,8 +446,7 @@ void DriveFileSyncService::ApplyLocalChange(
|
| if (!token) {
|
| pending_tasks_.push_back(base::Bind(
|
| &DriveFileSyncService::ApplyLocalChange,
|
| - AsWeakPtr(), local_file_change, local_file_path,
|
| - local_file_metadata, url, callback));
|
| + AsWeakPtr(), local_file_change, local_file_path, url, callback));
|
| return;
|
| }
|
|
|
|
|