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

Unified Diff: net/ftp/ftp_directory_parser.h

Issue 149772: Use base::Time::Exploded instead of struct tm in... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Upload before checkin 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 | « no previous file | net/ftp/ftp_directory_parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/ftp/ftp_directory_parser.h
===================================================================
--- net/ftp/ftp_directory_parser.h (revision 20893)
+++ net/ftp/ftp_directory_parser.h (working copy)
@@ -41,21 +41,20 @@
#ifndef NET_FTP_FTP_DIRECTORY_PARSER_H_
#define NET_FTP_FTP_DIRECTORY_PARSER_H_
-#include <time.h>
+#include "base/time.h"
-#include "base/basictypes.h"
-
namespace net {
struct ListState {
- void* magic; // to determine if previously initialized
- int64 now_time; // needed for year determination.
- struct tm now_tm; // needed for year determination.
- int lstyle; // LISTing style.
- int parsed_one; // returned anything yet?
- char carry_buf[84]; // for VMS multiline.
- unsigned int carry_buf_len; // length of name in carry_buf.
- unsigned int numlines; // number of lines seen.
+ void* magic; // to determine if previously
+ // initialized.
+ int now_tm_valid; // now_tm contains a valid time?
+ base::Time::Exploded now_tm; // needed for year determination.
+ int lstyle; // LISTing style.
+ int parsed_one; // returned anything yet?
+ char carry_buf[84]; // for VMS multiline.
+ unsigned int carry_buf_len; // length of name in carry_buf.
+ unsigned int numlines; // number of lines seen.
};
enum LineType {
@@ -67,15 +66,16 @@
};
struct ListResult {
- LineType fe_type;
- const char* fe_fname; // pointer to filename
- unsigned int fe_fnlen; // length of filename
- const char* fe_lname; // pointer to symlink name
- unsigned int fe_lnlen; // length of symlink name
- char fe_size[40]; // size of file in bytes (<= (2^128 - 1))
- int fe_cinfs; // file system is definitely case insensitive
- // TODO(ibrar): We should use "base::Time::Exploded" instead of "tm"
- struct tm fe_time; // last-modified time
+ LineType fe_type;
+ const char* fe_fname; // pointer to filename
+ unsigned int fe_fnlen; // length of filename
+ const char* fe_lname; // pointer to symlink name
+ unsigned int fe_lnlen; // length of symlink name
+ char fe_size[40]; // size of file in bytes
+ // (<= (2^128 - 1))
+ base::Time::Exploded fe_time; // last-modified time
+ int fe_cinfs; // file system is definitely
+ // case insensitive
};
// ParseFTPLine() parses line from an FTP LIST command.
Property changes on: net\ftp\ftp_directory_parser.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « no previous file | net/ftp/ftp_directory_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698