| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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 "storage/browser/fileapi/sandbox_file_system_backend_delegate.h" | 5 #include "storage/browser/fileapi/sandbox_file_system_backend_delegate.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/command_line.h" | 13 #include "base/command_line.h" |
| 14 #include "base/files/file_util.h" | 14 #include "base/files/file_util.h" |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "base/metrics/histogram.h" | 16 #include "base/metrics/histogram_macros.h" |
| 17 #include "base/stl_util.h" | 17 #include "base/stl_util.h" |
| 18 #include "base/task_runner_util.h" | 18 #include "base/task_runner_util.h" |
| 19 #include "net/base/url_util.h" | 19 #include "net/base/url_util.h" |
| 20 #include "storage/browser/fileapi/async_file_util_adapter.h" | 20 #include "storage/browser/fileapi/async_file_util_adapter.h" |
| 21 #include "storage/browser/fileapi/file_stream_reader.h" | 21 #include "storage/browser/fileapi/file_stream_reader.h" |
| 22 #include "storage/browser/fileapi/file_system_context.h" | 22 #include "storage/browser/fileapi/file_system_context.h" |
| 23 #include "storage/browser/fileapi/file_system_operation_context.h" | 23 #include "storage/browser/fileapi/file_system_operation_context.h" |
| 24 #include "storage/browser/fileapi/file_system_url.h" | 24 #include "storage/browser/fileapi/file_system_url.h" |
| 25 #include "storage/browser/fileapi/file_system_usage_cache.h" | 25 #include "storage/browser/fileapi/file_system_usage_cache.h" |
| 26 #include "storage/browser/fileapi/obfuscated_file_util.h" | 26 #include "storage/browser/fileapi/obfuscated_file_util.h" |
| (...skipping 669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 696 return new ObfuscatedFileUtil(special_storage_policy, | 696 return new ObfuscatedFileUtil(special_storage_policy, |
| 697 file_system_directory, | 697 file_system_directory, |
| 698 env_override, | 698 env_override, |
| 699 file_task_runner, | 699 file_task_runner, |
| 700 base::Bind(&GetTypeStringForURL), | 700 base::Bind(&GetTypeStringForURL), |
| 701 GetKnownTypeStrings(), | 701 GetKnownTypeStrings(), |
| 702 NULL); | 702 NULL); |
| 703 } | 703 } |
| 704 | 704 |
| 705 } // namespace storage | 705 } // namespace storage |
| OLD | NEW |