| 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 "webkit/browser/fileapi/sandbox_file_system_backend_delegate.h" | 5 #include "webkit/browser/fileapi/sandbox_file_system_backend_delegate.h" |
| 6 | 6 |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/file_util.h" | 10 #include "base/files/file_util.h" |
| 11 #include "base/metrics/histogram.h" | 11 #include "base/metrics/histogram.h" |
| 12 #include "base/stl_util.h" | 12 #include "base/stl_util.h" |
| 13 #include "base/task_runner_util.h" | 13 #include "base/task_runner_util.h" |
| 14 #include "net/base/net_util.h" | 14 #include "net/base/net_util.h" |
| 15 #include "webkit/browser/blob/file_stream_reader.h" | 15 #include "webkit/browser/blob/file_stream_reader.h" |
| 16 #include "webkit/browser/fileapi/async_file_util_adapter.h" | 16 #include "webkit/browser/fileapi/async_file_util_adapter.h" |
| 17 #include "webkit/browser/fileapi/file_system_context.h" | 17 #include "webkit/browser/fileapi/file_system_context.h" |
| 18 #include "webkit/browser/fileapi/file_system_operation_context.h" | 18 #include "webkit/browser/fileapi/file_system_operation_context.h" |
| 19 #include "webkit/browser/fileapi/file_system_url.h" | 19 #include "webkit/browser/fileapi/file_system_url.h" |
| 20 #include "webkit/browser/fileapi/file_system_usage_cache.h" | 20 #include "webkit/browser/fileapi/file_system_usage_cache.h" |
| (...skipping 643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 664 return new ObfuscatedFileUtil(special_storage_policy, | 664 return new ObfuscatedFileUtil(special_storage_policy, |
| 665 file_system_directory, | 665 file_system_directory, |
| 666 env_override, | 666 env_override, |
| 667 file_task_runner, | 667 file_task_runner, |
| 668 base::Bind(&GetTypeStringForURL), | 668 base::Bind(&GetTypeStringForURL), |
| 669 GetKnownTypeStrings(), | 669 GetKnownTypeStrings(), |
| 670 NULL); | 670 NULL); |
| 671 } | 671 } |
| 672 | 672 |
| 673 } // namespace storage | 673 } // namespace storage |
| OLD | NEW |