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

Unified Diff: runtime/bin/file_android.cc

Issue 254043002: Revert to using second-precision on file timestamps on Android. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/file_android.cc
diff --git a/runtime/bin/file_android.cc b/runtime/bin/file_android.cc
index 1b9e061c1184e44814d1532f7741e360869486f8..6b5b024475780b8953c98e1e8924d26150e2f6dc 100644
--- a/runtime/bin/file_android.cc
+++ b/runtime/bin/file_android.cc
@@ -293,12 +293,6 @@ int64_t File::LengthFromPath(const char* name) {
}
-static int64_t TimespecToMilliseconds(const struct timespec& t) {
- return static_cast<int64_t>(t.tv_sec) * 1000L +
- static_cast<int64_t>(t.tv_nsec) / 1000000L;
-}
-
-
void File::Stat(const char* name, int64_t* data) {
struct stat st;
if (NO_RETRY_EXPECTED(stat(name, &st)) == 0) {
@@ -311,9 +305,9 @@ void File::Stat(const char* name, int64_t* data) {
} else {
data[kType] = kDoesNotExist;
}
- data[kCreatedTime] = TimespecToMilliseconds(st.st_ctim);
- data[kModifiedTime] = TimespecToMilliseconds(st.st_mtim);
- data[kAccessedTime] = TimespecToMilliseconds(st.st_atim);
+ data[kCreatedTime] = static_cast<int64_t>(st.st_ctime) * 1000;
+ data[kModifiedTime] = static_cast<int64_t>(st.st_mtime) * 1000;
+ data[kAccessedTime] = static_cast<int64_t>(st.st_atime) * 1000;
data[kMode] = st.st_mode;
data[kSize] = st.st_size;
} else {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698