Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(558)

Side by Side Diff: base/files/file_util_proxy.cc

Issue 105293002: Move more file_util functions to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/files/file_path_watcher_win.cc ('k') | base/files/file_util_proxy_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « base/files/file_path_watcher_win.cc ('k') | base/files/file_util_proxy_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698