| 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 "content/browser/fileapi/browser_file_system_helper.h" | 5 #include "content/browser/fileapi/browser_file_system_helper.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 #include <string> | 8 #include <string> |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/command_line.h" | 12 #include "base/command_line.h" |
| 13 #include "base/files/file_path.h" | 13 #include "base/files/file_path.h" |
| 14 #include "base/sequenced_task_runner.h" | 14 #include "base/sequenced_task_runner.h" |
| 15 #include "base/threading/sequenced_worker_pool.h" | 15 #include "base/threading/sequenced_worker_pool.h" |
| 16 #include "content/browser/child_process_security_policy_impl.h" | 16 #include "content/browser/shared/child_process_security_policy_helper.h" |
| 17 #include "content/public/browser/browser_context.h" | 17 #include "content/public/browser/browser_context.h" |
| 18 #include "content/public/browser/browser_thread.h" | 18 #include "content/public/browser/browser_thread.h" |
| 19 #include "content/public/browser/content_browser_client.h" | 19 #include "content/public/browser/content_browser_client.h" |
| 20 #include "content/public/common/content_client.h" | 20 #include "content/public/common/content_client.h" |
| 21 #include "content/public/common/content_switches.h" | 21 #include "content/public/common/content_switches.h" |
| 22 #include "storage/browser/fileapi/external_mount_points.h" | 22 #include "storage/browser/fileapi/external_mount_points.h" |
| 23 #include "storage/browser/fileapi/file_permission_policy.h" | 23 #include "storage/browser/fileapi/file_permission_policy.h" |
| 24 #include "storage/browser/fileapi/file_system_backend.h" | 24 #include "storage/browser/fileapi/file_system_backend.h" |
| 25 #include "storage/browser/fileapi/file_system_context.h" | 25 #include "storage/browser/fileapi/file_system_context.h" |
| 26 #include "storage/browser/fileapi/file_system_operation_runner.h" | 26 #include "storage/browser/fileapi/file_system_operation_runner.h" |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 context->operation_runner()->SyncGetPlatformPath(url, platform_path); | 126 context->operation_runner()->SyncGetPlatformPath(url, platform_path); |
| 127 | 127 |
| 128 // The path is to be attached to URLLoader so we grant read permission | 128 // The path is to be attached to URLLoader so we grant read permission |
| 129 // for the file. (We need to check first because a parent directory may | 129 // for the file. (We need to check first because a parent directory may |
| 130 // already have the permissions and we don't need to grant it to the file.) | 130 // already have the permissions and we don't need to grant it to the file.) |
| 131 if (!policy->CanReadFile(process_id, *platform_path)) | 131 if (!policy->CanReadFile(process_id, *platform_path)) |
| 132 policy->GrantReadFile(process_id, *platform_path); | 132 policy->GrantReadFile(process_id, *platform_path); |
| 133 } | 133 } |
| 134 | 134 |
| 135 } // namespace content | 135 } // namespace content |
| OLD | NEW |