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

Side by Side Diff: base/platform_file_posix.cc

Issue 7044095: Hooking MHTML generation to the browser. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Style fixes Created 9 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/platform_file.h" 5 #include "base/platform_file.h"
6 6
7 #include <fcntl.h> 7 #include <fcntl.h>
8 #include <errno.h> 8 #include <errno.h>
9 #include <sys/stat.h> 9 #include <sys/stat.h>
10 10
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 184
185 info->is_directory = S_ISDIR(file_info.st_mode); 185 info->is_directory = S_ISDIR(file_info.st_mode);
186 info->is_symbolic_link = S_ISLNK(file_info.st_mode); 186 info->is_symbolic_link = S_ISLNK(file_info.st_mode);
187 info->size = file_info.st_size; 187 info->size = file_info.st_size;
188 info->last_modified = base::Time::FromTimeT(file_info.st_mtime); 188 info->last_modified = base::Time::FromTimeT(file_info.st_mtime);
189 info->last_accessed = base::Time::FromTimeT(file_info.st_atime); 189 info->last_accessed = base::Time::FromTimeT(file_info.st_atime);
190 info->creation_time = base::Time::FromTimeT(file_info.st_ctime); 190 info->creation_time = base::Time::FromTimeT(file_info.st_ctime);
191 return true; 191 return true;
192 } 192 }
193 193
194 PlatformFile GetFileHandleForProcess(PlatformFile file,
195 ProcessHandle process,
196 bool close_source_handle) {
197 return file;
198 }
199
194 } // namespace base 200 } // namespace base
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698