| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_ITUNES_FILE_UTIL_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_ITUNES_FILE_UTIL_H_ |
| 6 #define CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_ITUNES_FILE_UTIL_H_ | 6 #define CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_ITUNES_FILE_UTIL_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "chrome/browser/media_galleries/fileapi/native_media_file_util.h" | 10 #include "chrome/browser/media_galleries/fileapi/native_media_file_util.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 class ITunesFileUtil : public NativeMediaFileUtil { | 23 class ITunesFileUtil : public NativeMediaFileUtil { |
| 24 public: | 24 public: |
| 25 explicit ITunesFileUtil(MediaPathFilter* media_path_filter); | 25 explicit ITunesFileUtil(MediaPathFilter* media_path_filter); |
| 26 virtual ~ITunesFileUtil(); | 26 virtual ~ITunesFileUtil(); |
| 27 | 27 |
| 28 protected: | 28 protected: |
| 29 // NativeMediaFileUtil overrides. | 29 // NativeMediaFileUtil overrides. |
| 30 virtual void GetFileInfoOnTaskRunnerThread( | 30 virtual void GetFileInfoOnTaskRunnerThread( |
| 31 scoped_ptr<storage::FileSystemOperationContext> context, | 31 scoped_ptr<storage::FileSystemOperationContext> context, |
| 32 const storage::FileSystemURL& url, | 32 const storage::FileSystemURL& url, |
| 33 const GetFileInfoCallback& callback) OVERRIDE; | 33 const GetFileInfoCallback& callback) override; |
| 34 virtual void ReadDirectoryOnTaskRunnerThread( | 34 virtual void ReadDirectoryOnTaskRunnerThread( |
| 35 scoped_ptr<storage::FileSystemOperationContext> context, | 35 scoped_ptr<storage::FileSystemOperationContext> context, |
| 36 const storage::FileSystemURL& url, | 36 const storage::FileSystemURL& url, |
| 37 const ReadDirectoryCallback& callback) OVERRIDE; | 37 const ReadDirectoryCallback& callback) override; |
| 38 virtual void CreateSnapshotFileOnTaskRunnerThread( | 38 virtual void CreateSnapshotFileOnTaskRunnerThread( |
| 39 scoped_ptr<storage::FileSystemOperationContext> context, | 39 scoped_ptr<storage::FileSystemOperationContext> context, |
| 40 const storage::FileSystemURL& url, | 40 const storage::FileSystemURL& url, |
| 41 const CreateSnapshotFileCallback& callback) OVERRIDE; | 41 const CreateSnapshotFileCallback& callback) override; |
| 42 virtual base::File::Error GetFileInfoSync( | 42 virtual base::File::Error GetFileInfoSync( |
| 43 storage::FileSystemOperationContext* context, | 43 storage::FileSystemOperationContext* context, |
| 44 const storage::FileSystemURL& url, | 44 const storage::FileSystemURL& url, |
| 45 base::File::Info* file_info, | 45 base::File::Info* file_info, |
| 46 base::FilePath* platform_path) OVERRIDE; | 46 base::FilePath* platform_path) override; |
| 47 virtual base::File::Error ReadDirectorySync( | 47 virtual base::File::Error ReadDirectorySync( |
| 48 storage::FileSystemOperationContext* context, | 48 storage::FileSystemOperationContext* context, |
| 49 const storage::FileSystemURL& url, | 49 const storage::FileSystemURL& url, |
| 50 EntryList* file_list) OVERRIDE; | 50 EntryList* file_list) override; |
| 51 virtual base::File::Error DeleteDirectorySync( | 51 virtual base::File::Error DeleteDirectorySync( |
| 52 storage::FileSystemOperationContext* context, | 52 storage::FileSystemOperationContext* context, |
| 53 const storage::FileSystemURL& url) OVERRIDE; | 53 const storage::FileSystemURL& url) override; |
| 54 virtual base::File::Error DeleteFileSync( | 54 virtual base::File::Error DeleteFileSync( |
| 55 storage::FileSystemOperationContext* context, | 55 storage::FileSystemOperationContext* context, |
| 56 const storage::FileSystemURL& url) OVERRIDE; | 56 const storage::FileSystemURL& url) override; |
| 57 virtual base::File::Error CreateSnapshotFileSync( | 57 virtual base::File::Error CreateSnapshotFileSync( |
| 58 storage::FileSystemOperationContext* context, | 58 storage::FileSystemOperationContext* context, |
| 59 const storage::FileSystemURL& url, | 59 const storage::FileSystemURL& url, |
| 60 base::File::Info* file_info, | 60 base::File::Info* file_info, |
| 61 base::FilePath* platform_path, | 61 base::FilePath* platform_path, |
| 62 scoped_refptr<storage::ShareableFileReference>* file_ref) OVERRIDE; | 62 scoped_refptr<storage::ShareableFileReference>* file_ref) override; |
| 63 virtual base::File::Error GetLocalFilePath( | 63 virtual base::File::Error GetLocalFilePath( |
| 64 storage::FileSystemOperationContext* context, | 64 storage::FileSystemOperationContext* context, |
| 65 const storage::FileSystemURL& url, | 65 const storage::FileSystemURL& url, |
| 66 base::FilePath* local_file_path) OVERRIDE; | 66 base::FilePath* local_file_path) override; |
| 67 | 67 |
| 68 private: | 68 private: |
| 69 void GetFileInfoWithFreshDataProvider( | 69 void GetFileInfoWithFreshDataProvider( |
| 70 scoped_ptr<storage::FileSystemOperationContext> context, | 70 scoped_ptr<storage::FileSystemOperationContext> context, |
| 71 const storage::FileSystemURL& url, | 71 const storage::FileSystemURL& url, |
| 72 const GetFileInfoCallback& callback, | 72 const GetFileInfoCallback& callback, |
| 73 bool valid_parse); | 73 bool valid_parse); |
| 74 void ReadDirectoryWithFreshDataProvider( | 74 void ReadDirectoryWithFreshDataProvider( |
| 75 scoped_ptr<storage::FileSystemOperationContext> context, | 75 scoped_ptr<storage::FileSystemOperationContext> context, |
| 76 const storage::FileSystemURL& url, | 76 const storage::FileSystemURL& url, |
| (...skipping 10 matching lines...) Expand all Loading... |
| 87 ImportedMediaGalleryRegistry* imported_registry_; | 87 ImportedMediaGalleryRegistry* imported_registry_; |
| 88 | 88 |
| 89 base::WeakPtrFactory<ITunesFileUtil> weak_factory_; | 89 base::WeakPtrFactory<ITunesFileUtil> weak_factory_; |
| 90 | 90 |
| 91 DISALLOW_COPY_AND_ASSIGN(ITunesFileUtil); | 91 DISALLOW_COPY_AND_ASSIGN(ITunesFileUtil); |
| 92 }; | 92 }; |
| 93 | 93 |
| 94 } // namespace itunes | 94 } // namespace itunes |
| 95 | 95 |
| 96 #endif // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_ITUNES_FILE_UTIL_H_ | 96 #endif // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_ITUNES_FILE_UTIL_H_ |
| OLD | NEW |