| 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 "base/files/file_util_proxy.h" | 5 #include "base/files/file_util_proxy.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
| 9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
| 10 #include "base/location.h" | 10 #include "base/location.h" |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 class GetFileInfoHelper { | 104 class GetFileInfoHelper { |
| 105 public: | 105 public: |
| 106 GetFileInfoHelper() | 106 GetFileInfoHelper() |
| 107 : error_(PLATFORM_FILE_OK) {} | 107 : error_(PLATFORM_FILE_OK) {} |
| 108 | 108 |
| 109 void RunWorkForFilePath(const FilePath& file_path) { | 109 void RunWorkForFilePath(const FilePath& file_path) { |
| 110 if (!PathExists(file_path)) { | 110 if (!PathExists(file_path)) { |
| 111 error_ = PLATFORM_FILE_ERROR_NOT_FOUND; | 111 error_ = PLATFORM_FILE_ERROR_NOT_FOUND; |
| 112 return; | 112 return; |
| 113 } | 113 } |
| 114 if (!file_util::GetFileInfo(file_path, &file_info_)) | 114 if (!GetFileInfo(file_path, &file_info_)) |
| 115 error_ = PLATFORM_FILE_ERROR_FAILED; | 115 error_ = PLATFORM_FILE_ERROR_FAILED; |
| 116 } | 116 } |
| 117 | 117 |
| 118 void RunWorkForPlatformFile(PlatformFile file) { | 118 void RunWorkForPlatformFile(PlatformFile file) { |
| 119 if (!GetPlatformFileInfo(file, &file_info_)) | 119 if (!GetPlatformFileInfo(file, &file_info_)) |
| 120 error_ = PLATFORM_FILE_ERROR_FAILED; | 120 error_ = PLATFORM_FILE_ERROR_FAILED; |
| 121 } | 121 } |
| 122 | 122 |
| 123 void Reply(const FileUtilProxy::GetFileInfoCallback& callback) { | 123 void Reply(const FileUtilProxy::GetFileInfoCallback& callback) { |
| 124 if (!callback.is_null()) { | 124 if (!callback.is_null()) { |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 bool FileUtilProxy::RelayClose( | 405 bool FileUtilProxy::RelayClose( |
| 406 TaskRunner* task_runner, | 406 TaskRunner* task_runner, |
| 407 const CloseTask& close_task, | 407 const CloseTask& close_task, |
| 408 PlatformFile file_handle, | 408 PlatformFile file_handle, |
| 409 const StatusCallback& callback) { | 409 const StatusCallback& callback) { |
| 410 return base::PostTaskAndReplyWithResult( | 410 return base::PostTaskAndReplyWithResult( |
| 411 task_runner, FROM_HERE, Bind(close_task, file_handle), callback); | 411 task_runner, FROM_HERE, Bind(close_task, file_handle), callback); |
| 412 } | 412 } |
| 413 | 413 |
| 414 } // namespace base | 414 } // namespace base |
| OLD | NEW |