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

Unified Diff: net/url_request/url_request_new_ftp_job.cc

Issue 126096: Using base::Time::Exploded instead of "tm" (FTP PATCH SET 5) (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 years, 5 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
« no previous file with comments | « net/ftp/ftp_directory_parser.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request_new_ftp_job.cc
===================================================================
--- net/url_request/url_request_new_ftp_job.cc (revision 19238)
+++ net/url_request/url_request_new_ftp_job.cc (working copy)
@@ -126,45 +126,19 @@
while (getline(iss, line)) {
struct net::ListState state;
struct net::ListResult result;
- base::Time::Exploded et;
std::replace(line.begin(), line.end(), '\r', '\0');
net::LineType line_type = ParseFTPLine(line.c_str(), &state, &result);
switch (line_type) {
case net::FTP_TYPE_DIRECTORY:
- // TODO(ibrar): There is some problem in ParseFTPLine function or
- // in conversion between tm and base::Time::Exploded.
- // It returns wrong date/time (Differnce is 1 day and 17 Hours).
- memset(&et, 0, sizeof(base::Time::Exploded));
- et.second = result.fe_time.tm_sec;
- et.minute = result.fe_time.tm_min;
- et.hour = result.fe_time.tm_hour;
- et.day_of_month = result.fe_time.tm_mday;
- et.month = result.fe_time.tm_mon + 1;
- et.year = result.fe_time.tm_year + 1900;
- et.day_of_week = result.fe_time.tm_wday;
-
file_entry.append(net::GetDirectoryListingEntry(
- result.fe_fname, true, 0, base::Time::FromLocalExploded(et)));
+ result.fe_fname, true, 0,
+ base::Time::FromLocalExploded(result.fe_time)));
break;
case net::FTP_TYPE_FILE:
- // TODO(ibrar): There should be a way to create a Time object based
- // on "tm" structure. This will remove bunch of line of code to convert
- // tm to Time object.
- memset(&et, 0, sizeof(base::Time::Exploded));
- et.second = result.fe_time.tm_sec;
- et.minute = result.fe_time.tm_min;
- et.hour = result.fe_time.tm_hour;
- et.day_of_month = result.fe_time.tm_mday;
- et.month = result.fe_time.tm_mon + 1;
- et.year = result.fe_time.tm_year + 1900;
- et.day_of_week = result.fe_time.tm_wday;
- // TODO(ibrar): There is some problem in ParseFTPLine function or
- // in conversion between tm and base::Time::Exploded.
- // It returns wrong date/time (Differnce is 1 day and 17 Hours).
if (StringToInt64(result.fe_size, &file_size))
file_entry.append(net::GetDirectoryListingEntry(
result.fe_fname, false, file_size,
- base::Time::FromLocalExploded(et)));
+ base::Time::FromLocalExploded(result.fe_time)));
break;
case net::FTP_TYPE_SYMLINK:
case net::FTP_TYPE_JUNK:
« no previous file with comments | « net/ftp/ftp_directory_parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698