| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_MEDIA_FILE_SYSTEM_MOUNT_POINT_PRO
VIDER_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_MEDIA_FILE_SYSTEM_MOUNT_POINT_PRO
VIDER_H_ |
| 6 #define CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_MEDIA_FILE_SYSTEM_MOUNT_POINT_PRO
VIDER_H_ | 6 #define CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_MEDIA_FILE_SYSTEM_MOUNT_POINT_PRO
VIDER_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "webkit/browser/fileapi/file_system_mount_point_provider.h" | 9 #include "webkit/browser/fileapi/file_system_mount_point_provider.h" |
| 10 | 10 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 const fileapi::FileSystemURL& url, | 39 const fileapi::FileSystemURL& url, |
| 40 bool create) OVERRIDE; | 40 bool create) OVERRIDE; |
| 41 virtual fileapi::FileSystemFileUtil* GetFileUtil( | 41 virtual fileapi::FileSystemFileUtil* GetFileUtil( |
| 42 fileapi::FileSystemType type) OVERRIDE; | 42 fileapi::FileSystemType type) OVERRIDE; |
| 43 virtual fileapi::AsyncFileUtil* GetAsyncFileUtil( | 43 virtual fileapi::AsyncFileUtil* GetAsyncFileUtil( |
| 44 fileapi::FileSystemType type) OVERRIDE; | 44 fileapi::FileSystemType type) OVERRIDE; |
| 45 virtual fileapi::CopyOrMoveFileValidatorFactory* | 45 virtual fileapi::CopyOrMoveFileValidatorFactory* |
| 46 GetCopyOrMoveFileValidatorFactory( | 46 GetCopyOrMoveFileValidatorFactory( |
| 47 fileapi::FileSystemType type, | 47 fileapi::FileSystemType type, |
| 48 base::PlatformFileError* error_code) OVERRIDE; | 48 base::PlatformFileError* error_code) OVERRIDE; |
| 49 virtual void InitializeCopyOrMoveFileValidatorFactory( | |
| 50 fileapi::FileSystemType type, | |
| 51 scoped_ptr<fileapi::CopyOrMoveFileValidatorFactory> factory) OVERRIDE; | |
| 52 virtual fileapi::FilePermissionPolicy GetPermissionPolicy( | 49 virtual fileapi::FilePermissionPolicy GetPermissionPolicy( |
| 53 const fileapi::FileSystemURL& url, int permissions) const OVERRIDE; | 50 const fileapi::FileSystemURL& url, int permissions) const OVERRIDE; |
| 54 virtual fileapi::FileSystemOperation* CreateFileSystemOperation( | 51 virtual fileapi::FileSystemOperation* CreateFileSystemOperation( |
| 55 const fileapi::FileSystemURL& url, | 52 const fileapi::FileSystemURL& url, |
| 56 fileapi::FileSystemContext* context, | 53 fileapi::FileSystemContext* context, |
| 57 base::PlatformFileError* error_code) const OVERRIDE; | 54 base::PlatformFileError* error_code) const OVERRIDE; |
| 58 virtual scoped_ptr<webkit_blob::FileStreamReader> CreateFileStreamReader( | 55 virtual scoped_ptr<webkit_blob::FileStreamReader> CreateFileStreamReader( |
| 59 const fileapi::FileSystemURL& url, | 56 const fileapi::FileSystemURL& url, |
| 60 int64 offset, | 57 int64 offset, |
| 61 const base::Time& expected_modification_time, | 58 const base::Time& expected_modification_time, |
| (...skipping 21 matching lines...) Expand all Loading... |
| 83 scoped_ptr<DeviceMediaAsyncFileUtil> device_media_async_file_util_; | 80 scoped_ptr<DeviceMediaAsyncFileUtil> device_media_async_file_util_; |
| 84 scoped_ptr<fileapi::AsyncFileUtil> picasa_file_util_; | 81 scoped_ptr<fileapi::AsyncFileUtil> picasa_file_util_; |
| 85 scoped_ptr<fileapi::AsyncFileUtil> itunes_file_util_; | 82 scoped_ptr<fileapi::AsyncFileUtil> itunes_file_util_; |
| 86 | 83 |
| 87 DISALLOW_COPY_AND_ASSIGN(MediaFileSystemMountPointProvider); | 84 DISALLOW_COPY_AND_ASSIGN(MediaFileSystemMountPointProvider); |
| 88 }; | 85 }; |
| 89 | 86 |
| 90 } // namespace chrome | 87 } // namespace chrome |
| 91 | 88 |
| 92 #endif // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_MEDIA_FILE_SYSTEM_MOUNT_POINT_
PROVIDER_H_ | 89 #endif // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_MEDIA_FILE_SYSTEM_MOUNT_POINT_
PROVIDER_H_ |
| OLD | NEW |