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

Unified Diff: webkit/blob/blob_url_request_job.cc

Issue 3347005: Moving file_util::FileInfo to base::PlatformFileInfo, and adding the... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 4 months 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 side-by-side diff with in-line comments
Download patch
Index: webkit/blob/blob_url_request_job.cc
===================================================================
--- webkit/blob/blob_url_request_job.cc (revision 58317)
+++ webkit/blob/blob_url_request_job.cc (working copy)
@@ -105,7 +105,7 @@
// Otherwise, we use current thread, i.e. IO thread, as this is the case when
// we run the unittest or test shell.
// TODO(jianli): Consider using the proxy of current thread.
- file_util::FileInfo file_info;
+ base::PlatformFileInfo file_info;
bool exists = file_util::GetFileInfo(file_path, &file_info);
// Continue asynchronously.
@@ -116,7 +116,7 @@
}
void BlobURLRequestJob::DidResolve(base::PlatformFileError rv,
- const file_util::FileInfo& file_info) {
+ const base::PlatformFileInfo& file_info) {
// We may have been orphaned...
if (!request_)
return;

Powered by Google App Engine
This is Rietveld 408576698