| 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 "webkit/browser/fileapi/file_system_context.h" | 5 #include "webkit/browser/fileapi/file_system_context.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/single_thread_task_runner.h" | 8 #include "base/single_thread_task_runner.h" |
| 9 #include "base/stl_util.h" | 9 #include "base/stl_util.h" |
| 10 #include "googleurl/src/gurl.h" | 10 #include "url/gurl.h" |
| 11 #include "webkit/browser/blob/file_stream_reader.h" | 11 #include "webkit/browser/blob/file_stream_reader.h" |
| 12 #include "webkit/browser/fileapi/copy_or_move_file_validator.h" | 12 #include "webkit/browser/fileapi/copy_or_move_file_validator.h" |
| 13 #include "webkit/browser/fileapi/external_mount_points.h" | 13 #include "webkit/browser/fileapi/external_mount_points.h" |
| 14 #include "webkit/browser/fileapi/file_stream_writer.h" | 14 #include "webkit/browser/fileapi/file_stream_writer.h" |
| 15 #include "webkit/browser/fileapi/file_system_file_util.h" | 15 #include "webkit/browser/fileapi/file_system_file_util.h" |
| 16 #include "webkit/browser/fileapi/file_system_operation.h" | 16 #include "webkit/browser/fileapi/file_system_operation.h" |
| 17 #include "webkit/browser/fileapi/file_system_operation_runner.h" | 17 #include "webkit/browser/fileapi/file_system_operation_runner.h" |
| 18 #include "webkit/browser/fileapi/file_system_options.h" | 18 #include "webkit/browser/fileapi/file_system_options.h" |
| 19 #include "webkit/browser/fileapi/file_system_quota_client.h" | 19 #include "webkit/browser/fileapi/file_system_quota_client.h" |
| 20 #include "webkit/browser/fileapi/file_system_task_runners.h" | 20 #include "webkit/browser/fileapi/file_system_task_runners.h" |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 FileSystemType type = static_cast<FileSystemType>(t); | 407 FileSystemType type = static_cast<FileSystemType>(t); |
| 408 if (provider->CanHandleType(type)) { | 408 if (provider->CanHandleType(type)) { |
| 409 const bool inserted = provider_map_.insert( | 409 const bool inserted = provider_map_.insert( |
| 410 std::make_pair(type, provider)).second; | 410 std::make_pair(type, provider)).second; |
| 411 DCHECK(inserted); | 411 DCHECK(inserted); |
| 412 } | 412 } |
| 413 } | 413 } |
| 414 } | 414 } |
| 415 | 415 |
| 416 } // namespace fileapi | 416 } // namespace fileapi |
| OLD | NEW |