OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 "chrome/browser/media_galleries/fileapi/media_file_system_backend.h" | 5 #include "chrome/browser/media_galleries/fileapi/media_file_system_backend.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" |
(...skipping 15 matching lines...) Expand all Loading... |
26 #include "webkit/browser/fileapi/file_system_operation_impl.h" | 26 #include "webkit/browser/fileapi/file_system_operation_impl.h" |
27 #include "webkit/browser/fileapi/isolated_context.h" | 27 #include "webkit/browser/fileapi/isolated_context.h" |
28 #include "webkit/browser/fileapi/isolated_file_util.h" | 28 #include "webkit/browser/fileapi/isolated_file_util.h" |
29 #include "webkit/browser/fileapi/local_file_stream_writer.h" | 29 #include "webkit/browser/fileapi/local_file_stream_writer.h" |
30 #include "webkit/browser/fileapi/native_file_util.h" | 30 #include "webkit/browser/fileapi/native_file_util.h" |
31 #include "webkit/common/fileapi/file_system_types.h" | 31 #include "webkit/common/fileapi/file_system_types.h" |
32 #include "webkit/common/fileapi/file_system_util.h" | 32 #include "webkit/common/fileapi/file_system_util.h" |
33 | 33 |
34 #if defined(OS_WIN) || defined(OS_MACOSX) | 34 #if defined(OS_WIN) || defined(OS_MACOSX) |
35 #include "chrome/browser/media_galleries/fileapi/itunes_file_util.h" | 35 #include "chrome/browser/media_galleries/fileapi/itunes_file_util.h" |
36 #include "chrome/browser/media_galleries/fileapi/picasa/picasa_file_util.h" | 36 #include "chrome/browser/media_galleries/fileapi/picasa_file_util.h" |
37 #endif // defined(OS_WIN) || defined(OS_MACOSX) | 37 #endif // defined(OS_WIN) || defined(OS_MACOSX) |
38 | 38 |
39 using fileapi::FileSystemContext; | 39 using fileapi::FileSystemContext; |
40 using fileapi::FileSystemURL; | 40 using fileapi::FileSystemURL; |
41 | 41 |
42 namespace chrome { | 42 namespace chrome { |
43 | 43 |
44 const char MediaFileSystemBackend::kMediaTaskRunnerName[] = | 44 const char MediaFileSystemBackend::kMediaTaskRunnerName[] = |
45 "media-task-runner"; | 45 "media-task-runner"; |
46 | 46 |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 url.path(), offset)); | 189 url.path(), offset)); |
190 } | 190 } |
191 | 191 |
192 fileapi::FileSystemQuotaUtil* | 192 fileapi::FileSystemQuotaUtil* |
193 MediaFileSystemBackend::GetQuotaUtil() { | 193 MediaFileSystemBackend::GetQuotaUtil() { |
194 // No quota support. | 194 // No quota support. |
195 return NULL; | 195 return NULL; |
196 } | 196 } |
197 | 197 |
198 } // namespace chrome | 198 } // namespace chrome |
OLD | NEW |