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 "storage/browser/fileapi/sandbox_file_system_backend.h" | 5 #include "storage/browser/fileapi/sandbox_file_system_backend.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/files/file_util.h" | 8 #include "base/files/file_util.h" |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/metrics/histogram.h" | 10 #include "base/metrics/histogram.h" |
11 #include "base/task_runner_util.h" | 11 #include "base/task_runner_util.h" |
12 #include "storage/browser/blob/file_stream_reader.h" | |
13 #include "storage/browser/fileapi/async_file_util_adapter.h" | 12 #include "storage/browser/fileapi/async_file_util_adapter.h" |
14 #include "storage/browser/fileapi/copy_or_move_file_validator.h" | 13 #include "storage/browser/fileapi/copy_or_move_file_validator.h" |
| 14 #include "storage/browser/fileapi/file_stream_reader.h" |
15 #include "storage/browser/fileapi/file_stream_writer.h" | 15 #include "storage/browser/fileapi/file_stream_writer.h" |
16 #include "storage/browser/fileapi/file_system_context.h" | 16 #include "storage/browser/fileapi/file_system_context.h" |
17 #include "storage/browser/fileapi/file_system_operation.h" | 17 #include "storage/browser/fileapi/file_system_operation.h" |
18 #include "storage/browser/fileapi/file_system_operation_context.h" | 18 #include "storage/browser/fileapi/file_system_operation_context.h" |
19 #include "storage/browser/fileapi/file_system_options.h" | 19 #include "storage/browser/fileapi/file_system_options.h" |
20 #include "storage/browser/fileapi/file_system_usage_cache.h" | 20 #include "storage/browser/fileapi/file_system_usage_cache.h" |
21 #include "storage/browser/fileapi/obfuscated_file_util.h" | 21 #include "storage/browser/fileapi/obfuscated_file_util.h" |
22 #include "storage/browser/fileapi/sandbox_file_system_backend_delegate.h" | 22 #include "storage/browser/fileapi/sandbox_file_system_backend_delegate.h" |
23 #include "storage/browser/fileapi/sandbox_quota_observer.h" | 23 #include "storage/browser/fileapi/sandbox_quota_observer.h" |
24 #include "storage/browser/quota/quota_manager.h" | 24 #include "storage/browser/quota/quota_manager.h" |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 return delegate_->GetAccessObservers(type); | 173 return delegate_->GetAccessObservers(type); |
174 } | 174 } |
175 | 175 |
176 SandboxFileSystemBackendDelegate::OriginEnumerator* | 176 SandboxFileSystemBackendDelegate::OriginEnumerator* |
177 SandboxFileSystemBackend::CreateOriginEnumerator() { | 177 SandboxFileSystemBackend::CreateOriginEnumerator() { |
178 DCHECK(delegate_); | 178 DCHECK(delegate_); |
179 return delegate_->CreateOriginEnumerator(); | 179 return delegate_->CreateOriginEnumerator(); |
180 } | 180 } |
181 | 181 |
182 } // namespace storage | 182 } // namespace storage |
OLD | NEW |