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

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

Issue 12209115: Sync FileSystem: disable etag match on duplication recovery. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync_file_system/drive_file_sync_client.cc
diff --git a/chrome/browser/sync_file_system/drive_file_sync_client.cc b/chrome/browser/sync_file_system/drive_file_sync_client.cc
index 955c8dae82e588b48651076e50359c545cfe0d54..0f5bf6bfb069323dea3381fec7f89eb87aab5643 100644
--- a/chrome/browser/sync_file_system/drive_file_sync_client.cc
+++ b/chrome/browser/sync_file_system/drive_file_sync_client.cc
@@ -854,7 +854,7 @@ void DriveFileSyncClient::DeleteEntries(
drive_service_->DeleteResource(
entry->resource_id(),
- entry->etag(),
+ std::string(), // etag
kinuko 2013/02/12 07:57:30 Can we elaborate this comment? Like: // We don't
tzik 2013/02/12 11:48:18 Done.
base::Bind(&DriveFileSyncClient::DidDeleteEntry, AsWeakPtr(),
base::Passed(&entries), callback));
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698