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

Unified Diff: runtime/bin/io_service.h

Issue 833623004: Add support for file locking (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix Windows test Created 5 years, 11 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
Index: runtime/bin/io_service.h
diff --git a/runtime/bin/io_service.h b/runtime/bin/io_service.h
index af829ebd60557b548a71567d031343c955484bd5..87810d0c5da704b6c37871b5a392d32f78533d0f 100644
--- a/runtime/bin/io_service.h
+++ b/runtime/bin/io_service.h
@@ -41,18 +41,19 @@ namespace bin {
V(File, Type, 24) \
V(File, Identical, 25) \
V(File, Stat, 26) \
- V(Socket, Lookup, 27) \
- V(Socket, ListInterfaces, 28) \
- V(Socket, ReverseLookup, 29) \
- V(Directory, Create, 30) \
- V(Directory, Delete, 31) \
- V(Directory, Exists, 32) \
- V(Directory, CreateTemp, 33) \
- V(Directory, ListStart, 34) \
- V(Directory, ListNext, 35) \
- V(Directory, ListStop, 36) \
- V(Directory, Rename, 37) \
- V(SSLFilter, ProcessFilter, 38)
+ 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)
#define DECLARE_REQUEST(type, method, id) \
k##type##method##Request = id,

Powered by Google App Engine
This is Rietveld 408576698