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

Unified Diff: net/base/upload_data_stream.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: net/base/upload_data_stream.cc
===================================================================
--- net/base/upload_data_stream.cc (revision 58317)
+++ net/base/upload_data_stream.cc (working copy)
@@ -82,7 +82,7 @@
// Note that the expected modification time from WebKit is based on
// time_t precision. So we have to convert both to time_t to compare.
if (!element.expected_file_modification_time().is_null()) {
- file_util::FileInfo info;
+ base::PlatformFileInfo info;
if (file_util::GetFileInfo(element.file_path(), &info) &&
element.expected_file_modification_time().ToTimeT() !=
info.last_modified.ToTimeT()) {

Powered by Google App Engine
This is Rietveld 408576698