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

Unified Diff: chrome/browser/sync_file_system/local/syncable_file_system_operation.cc

Issue 1455403003: Add an option to specify requested fields for fetching metadata. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleaned up. Created 5 years, 1 month 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/local/syncable_file_system_operation.cc
diff --git a/chrome/browser/sync_file_system/local/syncable_file_system_operation.cc b/chrome/browser/sync_file_system/local/syncable_file_system_operation.cc
index a5eebe7a9d1af3df2d87b46e7ed9dda7606ba416..1c19b9cec4fe074fe4be00045a174d903f9de39a 100644
--- a/chrome/browser/sync_file_system/local/syncable_file_system_operation.cc
+++ b/chrome/browser/sync_file_system/local/syncable_file_system_operation.cc
@@ -176,9 +176,10 @@ void SyncableFileSystemOperation::FileExists(
void SyncableFileSystemOperation::GetMetadata(
const FileSystemURL& url,
+ int fields,
const GetMetadataCallback& callback) {
DCHECK(CalledOnValidThread());
- impl_->GetMetadata(url, callback);
+ impl_->GetMetadata(url, fields, callback);
}
void SyncableFileSystemOperation::ReadDirectory(

Powered by Google App Engine
This is Rietveld 408576698