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

Side by Side Diff: utils/archive/entry_request.dart

Issue 11358145: Update utils to new library syntax. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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
« no previous file with comments | « utils/archive/entry.dart ('k') | utils/archive/input_stream.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 /** The request ids for entry-related messages to send to the C extension. */ 5 /** The request ids for entry-related messages to send to the C extension. */
6 #library("entry_request"); 6 library entry_request;
7 7
8 #import("read_request.dart", prefix: "read"); 8 import 'read_request.dart' as read;
9 9
10 final int _first = read.LAST; 10 final int _first = read.LAST;
11 11
12 final int CLONE = _first + 1; 12 final int CLONE = _first + 1;
13 final int FREE = _first + 2; 13 final int FREE = _first + 2;
14 final int NEW = _first + 3; 14 final int NEW = _first + 3;
15 final int SET_HARDLINK = _first + 4; 15 final int SET_HARDLINK = _first + 4;
16 final int SET_PATHNAME = _first + 5; 16 final int SET_PATHNAME = _first + 5;
17 final int SET_SYMLINK = _first + 6; 17 final int SET_SYMLINK = _first + 6;
18 final int SET_GID = _first + 7; 18 final int SET_GID = _first + 7;
(...skipping 13 matching lines...) Expand all
32 final int SET_NLINK = _first + 21; 32 final int SET_NLINK = _first + 21;
33 final int SET_RDEV = _first + 22; 33 final int SET_RDEV = _first + 22;
34 final int SET_RDEVMAJOR = _first + 23; 34 final int SET_RDEVMAJOR = _first + 23;
35 final int SET_RDEVMINOR = _first + 24; 35 final int SET_RDEVMINOR = _first + 24;
36 final int SET_ATIME = _first + 25; 36 final int SET_ATIME = _first + 25;
37 final int SET_BIRTHTIME = _first + 26; 37 final int SET_BIRTHTIME = _first + 26;
38 final int SET_CTIME = _first + 27; 38 final int SET_CTIME = _first + 27;
39 final int SET_MTIME = _first + 28; 39 final int SET_MTIME = _first + 28;
40 40
41 final int LAST = SET_MTIME; 41 final int LAST = SET_MTIME;
OLDNEW
« no previous file with comments | « utils/archive/entry.dart ('k') | utils/archive/input_stream.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698