| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "webkit/browser/fileapi/isolated_mount_point_provider.h" | 5 #include "webkit/browser/fileapi/isolated_mount_point_provider.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/files/file_util_proxy.h" | 11 #include "base/files/file_util_proxy.h" |
| 12 #include "base/logging.h" | 12 #include "base/logging.h" |
| 13 #include "base/message_loop_proxy.h" | 13 #include "base/message_loop/message_loop_proxy.h" |
| 14 #include "base/platform_file.h" | 14 #include "base/platform_file.h" |
| 15 #include "base/sequenced_task_runner.h" | 15 #include "base/sequenced_task_runner.h" |
| 16 #include "webkit/browser/blob/local_file_stream_reader.h" | 16 #include "webkit/browser/blob/local_file_stream_reader.h" |
| 17 #include "webkit/browser/fileapi/async_file_util_adapter.h" | 17 #include "webkit/browser/fileapi/async_file_util_adapter.h" |
| 18 #include "webkit/browser/fileapi/copy_or_move_file_validator.h" | 18 #include "webkit/browser/fileapi/copy_or_move_file_validator.h" |
| 19 #include "webkit/browser/fileapi/file_system_context.h" | 19 #include "webkit/browser/fileapi/file_system_context.h" |
| 20 #include "webkit/browser/fileapi/file_system_file_stream_reader.h" | 20 #include "webkit/browser/fileapi/file_system_file_stream_reader.h" |
| 21 #include "webkit/browser/fileapi/file_system_operation_context.h" | 21 #include "webkit/browser/fileapi/file_system_operation_context.h" |
| 22 #include "webkit/browser/fileapi/file_system_task_runners.h" | 22 #include "webkit/browser/fileapi/file_system_task_runners.h" |
| 23 #include "webkit/browser/fileapi/isolated_context.h" | 23 #include "webkit/browser/fileapi/isolated_context.h" |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 void IsolatedMountPointProvider::DeleteFileSystem( | 153 void IsolatedMountPointProvider::DeleteFileSystem( |
| 154 const GURL& origin_url, | 154 const GURL& origin_url, |
| 155 FileSystemType type, | 155 FileSystemType type, |
| 156 FileSystemContext* context, | 156 FileSystemContext* context, |
| 157 const DeleteFileSystemCallback& callback) { | 157 const DeleteFileSystemCallback& callback) { |
| 158 NOTREACHED(); | 158 NOTREACHED(); |
| 159 callback.Run(base::PLATFORM_FILE_ERROR_INVALID_OPERATION); | 159 callback.Run(base::PLATFORM_FILE_ERROR_INVALID_OPERATION); |
| 160 } | 160 } |
| 161 | 161 |
| 162 } // namespace fileapi | 162 } // namespace fileapi |
| OLD | NEW |