| 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 #include "chrome/browser/media_galleries/fileapi/media_file_system_mount_point_p
rovider.h" | 5 #include "chrome/browser/media_galleries/fileapi/media_file_system_mount_point_p
rovider.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| 11 #include "base/logging.h" | 11 #include "base/logging.h" |
| 12 #include "base/message_loop/message_loop_proxy.h" | 12 #include "base/message_loop/message_loop_proxy.h" |
| 13 #include "base/platform_file.h" | 13 #include "base/platform_file.h" |
| 14 #include "base/sequenced_task_runner.h" | 14 #include "base/sequenced_task_runner.h" |
| 15 #include "chrome/browser/media_galleries/fileapi/device_media_async_file_util.h" | 15 #include "chrome/browser/media_galleries/fileapi/device_media_async_file_util.h" |
| 16 #include "chrome/browser/media_galleries/fileapi/itunes/itunes_file_util.h" | 16 #include "chrome/browser/media_galleries/fileapi/itunes/itunes_file_util.h" |
| 17 #include "chrome/browser/media_galleries/fileapi/media_path_filter.h" | 17 #include "chrome/browser/media_galleries/fileapi/media_path_filter.h" |
| 18 #include "chrome/browser/media_galleries/fileapi/native_media_file_util.h" | 18 #include "chrome/browser/media_galleries/fileapi/native_media_file_util.h" |
| 19 #include "chrome/browser/media_galleries/fileapi/picasa/picasa_file_util.h" | 19 #include "chrome/browser/media_galleries/fileapi/picasa/picasa_file_util.h" |
| 20 #include "webkit/blob/local_file_stream_reader.h" | 20 #include "webkit/blob/local_file_stream_reader.h" |
| 21 #include "webkit/browser/fileapi/copy_or_move_file_validator.h" | 21 #include "webkit/browser/fileapi/copy_or_move_file_validator.h" |
| 22 #include "webkit/browser/fileapi/isolated_file_util.h" |
| 23 #include "webkit/browser/fileapi/native_file_util.h" |
| 22 #include "webkit/fileapi/async_file_util_adapter.h" | 24 #include "webkit/fileapi/async_file_util_adapter.h" |
| 23 #include "webkit/fileapi/file_system_context.h" | 25 #include "webkit/fileapi/file_system_context.h" |
| 24 #include "webkit/fileapi/file_system_file_stream_reader.h" | 26 #include "webkit/fileapi/file_system_file_stream_reader.h" |
| 25 #include "webkit/fileapi/file_system_operation_context.h" | 27 #include "webkit/fileapi/file_system_operation_context.h" |
| 26 #include "webkit/fileapi/file_system_task_runners.h" | 28 #include "webkit/fileapi/file_system_task_runners.h" |
| 27 #include "webkit/fileapi/file_system_types.h" | 29 #include "webkit/fileapi/file_system_types.h" |
| 28 #include "webkit/fileapi/file_system_util.h" | 30 #include "webkit/fileapi/file_system_util.h" |
| 29 #include "webkit/fileapi/isolated_context.h" | 31 #include "webkit/fileapi/isolated_context.h" |
| 30 #include "webkit/fileapi/isolated_file_util.h" | |
| 31 #include "webkit/fileapi/local_file_stream_writer.h" | 32 #include "webkit/fileapi/local_file_stream_writer.h" |
| 32 #include "webkit/fileapi/local_file_system_operation.h" | 33 #include "webkit/fileapi/local_file_system_operation.h" |
| 33 #include "webkit/fileapi/native_file_util.h" | |
| 34 | 34 |
| 35 | 35 |
| 36 using fileapi::FileSystemContext; | 36 using fileapi::FileSystemContext; |
| 37 using fileapi::FileSystemURL; | 37 using fileapi::FileSystemURL; |
| 38 | 38 |
| 39 namespace chrome { | 39 namespace chrome { |
| 40 | 40 |
| 41 const char MediaFileSystemMountPointProvider::kMediaPathFilterKey[] = | 41 const char MediaFileSystemMountPointProvider::kMediaPathFilterKey[] = |
| 42 "MediaPathFilterKey"; | 42 "MediaPathFilterKey"; |
| 43 const char MediaFileSystemMountPointProvider::kMTPDeviceDelegateURLKey[] = | 43 const char MediaFileSystemMountPointProvider::kMTPDeviceDelegateURLKey[] = |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 void MediaFileSystemMountPointProvider::DeleteFileSystem( | 213 void MediaFileSystemMountPointProvider::DeleteFileSystem( |
| 214 const GURL& origin_url, | 214 const GURL& origin_url, |
| 215 fileapi::FileSystemType type, | 215 fileapi::FileSystemType type, |
| 216 FileSystemContext* context, | 216 FileSystemContext* context, |
| 217 const DeleteFileSystemCallback& callback) { | 217 const DeleteFileSystemCallback& callback) { |
| 218 NOTREACHED(); | 218 NOTREACHED(); |
| 219 callback.Run(base::PLATFORM_FILE_ERROR_INVALID_OPERATION); | 219 callback.Run(base::PLATFORM_FILE_ERROR_INVALID_OPERATION); |
| 220 } | 220 } |
| 221 | 221 |
| 222 } // namespace chrome | 222 } // namespace chrome |
| OLD | NEW |