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 63f6867b5a62a854dd8acfdc484716110a99df70..923eedeb3be5728ea17b636529993a02bafa8f6b 100644 |
--- a/chrome/browser/chromeos/gdata/gdata_file_system.h |
+++ b/chrome/browser/chromeos/gdata/gdata_file_system.h |
@@ -380,7 +380,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; |
@@ -465,7 +465,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; |
@@ -1226,7 +1226,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); |