Index: chrome/browser/chromeos/gdata/gdata_file_system.h |
diff --git a/chrome/browser/chromeos/gdata/gdata_file_system.h b/chrome/browser/chromeos/gdata/gdata_file_system.h |
index c5c2503315b18bcc5ca0e06512ef175b5b98dddd..4aa3975aad72de8189f656f9d1e51dbe59df445d 100644 |
--- a/chrome/browser/chromeos/gdata/gdata_file_system.h |
+++ b/chrome/browser/chromeos/gdata/gdata_file_system.h |
@@ -381,7 +381,7 @@ class GDataFileSystemInterface { |
// |callback| will be called on the UI thread upon completion of operation. |
virtual void AddUploadedFile(UploadMode upload_mode, |
const FilePath& virtual_dir_path, |
- DocumentEntry* entry, |
+ scoped_ptr<DocumentEntry> entry, |
const FilePath& file_content_path, |
GDataCache::FileOperationType cache_operation, |
const base::Closure& callback) = 0; |
@@ -466,7 +466,7 @@ class GDataFileSystem : public GDataFileSystemInterface, |
const GetAvailableSpaceCallback& callback) OVERRIDE; |
virtual void AddUploadedFile(UploadMode upload_mode, |
const FilePath& virtual_dir_path, |
- DocumentEntry* entry, |
+ scoped_ptr<DocumentEntry> entry, |
const FilePath& file_content_path, |
GDataCache::FileOperationType cache_operation, |
const base::Closure& callback) OVERRIDE; |
@@ -1227,7 +1227,7 @@ class GDataFileSystem : public GDataFileSystemInterface, |
void GetAvailableSpaceOnUIThread(const GetAvailableSpaceCallback& callback); |
void AddUploadedFileOnUIThread(UploadMode upload_mode, |
const FilePath& virtual_dir_path, |
- DocumentEntry* entry, |
+ scoped_ptr<DocumentEntry> entry, |
const FilePath& file_content_path, |
GDataCache::FileOperationType cache_operation, |
const base::Closure& callback); |