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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 const DeleteFileSystemCallback& callback) OVERRIDE; | 66 const DeleteFileSystemCallback& callback) OVERRIDE; |
67 | 67 |
68 private: | 68 private: |
69 // Store the profile path. We need this to create temporary snapshot files. | 69 // Store the profile path. We need this to create temporary snapshot files. |
70 const base::FilePath profile_path_; | 70 const base::FilePath profile_path_; |
71 | 71 |
72 scoped_ptr<MediaPathFilter> media_path_filter_; | 72 scoped_ptr<MediaPathFilter> media_path_filter_; |
73 scoped_ptr<fileapi::CopyOrMoveFileValidatorFactory> | 73 scoped_ptr<fileapi::CopyOrMoveFileValidatorFactory> |
74 media_copy_or_move_file_validator_factory_; | 74 media_copy_or_move_file_validator_factory_; |
75 | 75 |
76 scoped_ptr<fileapi::AsyncFileUtilAdapter> native_media_file_util_; | 76 scoped_ptr<fileapi::AsyncFileUtil> native_media_file_util_; |
77 scoped_ptr<DeviceMediaAsyncFileUtil> device_media_async_file_util_; | 77 scoped_ptr<DeviceMediaAsyncFileUtil> device_media_async_file_util_; |
78 scoped_ptr<fileapi::AsyncFileUtil> picasa_file_util_; | 78 scoped_ptr<fileapi::AsyncFileUtil> picasa_file_util_; |
79 scoped_ptr<fileapi::AsyncFileUtil> itunes_file_util_; | 79 scoped_ptr<fileapi::AsyncFileUtil> itunes_file_util_; |
80 | 80 |
81 DISALLOW_COPY_AND_ASSIGN(MediaFileSystemMountPointProvider); | 81 DISALLOW_COPY_AND_ASSIGN(MediaFileSystemMountPointProvider); |
82 }; | 82 }; |
83 | 83 |
84 } // namespace chrome | 84 } // namespace chrome |
85 | 85 |
86 #endif // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_MEDIA_FILE_SYSTEM_MOUNT_POINT_
PROVIDER_H_ | 86 #endif // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_MEDIA_FILE_SYSTEM_MOUNT_POINT_
PROVIDER_H_ |
OLD | NEW |