| 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 "storage/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/files/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 "storage/browser/blob/file_stream_reader.h" |
| 16 #include "webkit/browser/fileapi/async_file_util_adapter.h" | 16 #include "storage/browser/fileapi/async_file_util_adapter.h" |
| 17 #include "webkit/browser/fileapi/file_system_context.h" | 17 #include "storage/browser/fileapi/file_system_context.h" |
| 18 #include "webkit/browser/fileapi/file_system_operation_context.h" | 18 #include "storage/browser/fileapi/file_system_operation_context.h" |
| 19 #include "webkit/browser/fileapi/file_system_url.h" | 19 #include "storage/browser/fileapi/file_system_url.h" |
| 20 #include "webkit/browser/fileapi/file_system_usage_cache.h" | 20 #include "storage/browser/fileapi/file_system_usage_cache.h" |
| 21 #include "webkit/browser/fileapi/obfuscated_file_util.h" | 21 #include "storage/browser/fileapi/obfuscated_file_util.h" |
| 22 #include "webkit/browser/fileapi/quota/quota_backend_impl.h" | 22 #include "storage/browser/fileapi/quota/quota_backend_impl.h" |
| 23 #include "webkit/browser/fileapi/quota/quota_reservation.h" | 23 #include "storage/browser/fileapi/quota/quota_reservation.h" |
| 24 #include "webkit/browser/fileapi/quota/quota_reservation_manager.h" | 24 #include "storage/browser/fileapi/quota/quota_reservation_manager.h" |
| 25 #include "webkit/browser/fileapi/sandbox_file_stream_writer.h" | 25 #include "storage/browser/fileapi/sandbox_file_stream_writer.h" |
| 26 #include "webkit/browser/fileapi/sandbox_file_system_backend.h" | 26 #include "storage/browser/fileapi/sandbox_file_system_backend.h" |
| 27 #include "webkit/browser/fileapi/sandbox_quota_observer.h" | 27 #include "storage/browser/fileapi/sandbox_quota_observer.h" |
| 28 #include "webkit/browser/quota/quota_manager_proxy.h" | 28 #include "storage/browser/quota/quota_manager_proxy.h" |
| 29 #include "webkit/common/fileapi/file_system_util.h" | 29 #include "storage/common/fileapi/file_system_util.h" |
| 30 | 30 |
| 31 namespace storage { | 31 namespace storage { |
| 32 | 32 |
| 33 namespace { | 33 namespace { |
| 34 | 34 |
| 35 const char kTemporaryOriginsCountLabel[] = "FileSystem.TemporaryOriginsCount"; | 35 const char kTemporaryOriginsCountLabel[] = "FileSystem.TemporaryOriginsCount"; |
| 36 const char kPersistentOriginsCountLabel[] = "FileSystem.PersistentOriginsCount"; | 36 const char kPersistentOriginsCountLabel[] = "FileSystem.PersistentOriginsCount"; |
| 37 | 37 |
| 38 const char kOpenFileSystemLabel[] = "FileSystem.OpenFileSystem"; | 38 const char kOpenFileSystemLabel[] = "FileSystem.OpenFileSystem"; |
| 39 const char kOpenFileSystemDetailLabel[] = "FileSystem.OpenFileSystemDetail"; | 39 const char kOpenFileSystemDetailLabel[] = "FileSystem.OpenFileSystemDetail"; |
| (...skipping 624 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 |