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

Unified Diff: chrome/browser/sync_file_system/drive_file_sync_service.cc

Issue 11602004: Cleanup: Remote metadata parameter from ApplyLocalChange (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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_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;
}
« no previous file with comments | « chrome/browser/sync_file_system/drive_file_sync_service.h ('k') | chrome/browser/sync_file_system/local_change_processor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698