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

Unified Diff: runtime/bin/io_service.h

Issue 2681683005: [dart:io] Adds functions to set file access and modification time (Closed)
Patch Set: Update changelog Created 3 years, 10 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 | « runtime/bin/io_natives.cc ('k') | runtime/bin/io_service_no_ssl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/io_service.h
diff --git a/runtime/bin/io_service.h b/runtime/bin/io_service.h
index 7439253b65cde75e6ad2944e7ceb227583a77384..51691f59145c23e31a2546bfe4e70dff11cce045 100644
--- a/runtime/bin/io_service.h
+++ b/runtime/bin/io_service.h
@@ -30,33 +30,36 @@ namespace bin {
V(File, Truncate, 10) \
V(File, Length, 11) \
V(File, LengthFromPath, 12) \
- V(File, LastModified, 13) \
- V(File, Flush, 14) \
- V(File, ReadByte, 15) \
- V(File, WriteByte, 16) \
- V(File, Read, 17) \
- V(File, ReadInto, 18) \
- V(File, WriteFrom, 19) \
- V(File, CreateLink, 20) \
- V(File, DeleteLink, 21) \
- V(File, RenameLink, 22) \
- V(File, LinkTarget, 23) \
- V(File, Type, 24) \
- V(File, Identical, 25) \
- V(File, Stat, 26) \
- V(File, Lock, 27) \
- V(Socket, Lookup, 28) \
- V(Socket, ListInterfaces, 29) \
- V(Socket, ReverseLookup, 30) \
- V(Directory, Create, 31) \
- V(Directory, Delete, 32) \
- V(Directory, Exists, 33) \
- V(Directory, CreateTemp, 34) \
- V(Directory, ListStart, 35) \
- V(Directory, ListNext, 36) \
- V(Directory, ListStop, 37) \
- V(Directory, Rename, 38) \
- V(SSLFilter, ProcessFilter, 39)
+ V(File, LastAccessed, 13) \
+ V(File, SetLastAccessed, 14) \
+ V(File, LastModified, 15) \
+ V(File, SetLastModified, 16) \
+ V(File, Flush, 17) \
+ V(File, ReadByte, 18) \
+ V(File, WriteByte, 19) \
+ V(File, Read, 20) \
+ V(File, ReadInto, 21) \
+ V(File, WriteFrom, 22) \
+ V(File, CreateLink, 23) \
+ V(File, DeleteLink, 24) \
+ V(File, RenameLink, 25) \
+ V(File, LinkTarget, 26) \
+ V(File, Type, 27) \
+ V(File, Identical, 28) \
+ V(File, Stat, 29) \
+ V(File, Lock, 30) \
+ V(Socket, Lookup, 31) \
+ V(Socket, ListInterfaces, 32) \
+ V(Socket, ReverseLookup, 33) \
+ V(Directory, Create, 34) \
+ V(Directory, Delete, 35) \
+ V(Directory, Exists, 36) \
+ V(Directory, CreateTemp, 37) \
+ V(Directory, ListStart, 38) \
+ V(Directory, ListNext, 39) \
+ V(Directory, ListStop, 40) \
+ V(Directory, Rename, 41) \
+ V(SSLFilter, ProcessFilter, 42)
#define DECLARE_REQUEST(type, method, id) k##type##method##Request = id,
« no previous file with comments | « runtime/bin/io_natives.cc ('k') | runtime/bin/io_service_no_ssl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698