summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chromeos/drive/file_system/update_operation.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/chromeos/drive/file_system/update_operation.cc')
-rw-r--r--chrome/browser/chromeos/drive/file_system/update_operation.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/chromeos/drive/file_system/update_operation.cc b/chrome/browser/chromeos/drive/file_system/update_operation.cc
index 4e06288..d0741bf 100644
--- a/chrome/browser/chromeos/drive/file_system/update_operation.cc
+++ b/chrome/browser/chromeos/drive/file_system/update_operation.cc
@@ -145,7 +145,7 @@ void UpdateOperation::OnUpdatedFileUploaded(
google_apis::DriveUploadError error,
const FilePath& drive_path,
const FilePath& file_path,
- scoped_ptr<google_apis::DocumentEntry> document_entry) {
+ scoped_ptr<google_apis::ResourceEntry> resource_entry) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());
@@ -156,7 +156,7 @@ void UpdateOperation::OnUpdatedFileUploaded(
}
metadata_->RefreshFile(
- document_entry.Pass(),
+ resource_entry.Pass(),
base::Bind(&UpdateOperation::OnUpdatedFileRefreshed,
weak_ptr_factory_.GetWeakPtr(), callback));
}