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

Side by Side Diff: utils/archive/read_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/options.dart ('k') | utils/archive/reader.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 read-related messages to send to the C extension. */ 5 /** The request ids for read-related messages to send to the C extension. */
6 #library("read_request"); 6 library read_request;
7 7
8 final int NEW = 0; 8 final int NEW = 0;
9 final int SUPPORT_FILTER_ALL = 1; 9 final int SUPPORT_FILTER_ALL = 1;
10 final int SUPPORT_FILTER_BZIP2 = 2; 10 final int SUPPORT_FILTER_BZIP2 = 2;
11 final int SUPPORT_FILTER_COMPRESS = 3; 11 final int SUPPORT_FILTER_COMPRESS = 3;
12 final int SUPPORT_FILTER_GZIP = 4; 12 final int SUPPORT_FILTER_GZIP = 4;
13 final int SUPPORT_FILTER_LZMA = 5; 13 final int SUPPORT_FILTER_LZMA = 5;
14 final int SUPPORT_FILTER_XZ = 6; 14 final int SUPPORT_FILTER_XZ = 6;
15 final int SUPPORT_FILTER_PROGRAM = 7; 15 final int SUPPORT_FILTER_PROGRAM = 7;
16 final int SUPPORT_FILTER_PROGRAM_SIGNATURE = 8; 16 final int SUPPORT_FILTER_PROGRAM_SIGNATURE = 8;
(...skipping 11 matching lines...) Expand all
28 final int SET_OPTION = 20; 28 final int SET_OPTION = 20;
29 final int OPEN_FILENAME = 21; 29 final int OPEN_FILENAME = 21;
30 final int OPEN_MEMORY = 22; 30 final int OPEN_MEMORY = 22;
31 final int NEXT_HEADER = 23; 31 final int NEXT_HEADER = 23;
32 final int DATA_BLOCK = 24; 32 final int DATA_BLOCK = 24;
33 final int DATA_SKIP = 25; 33 final int DATA_SKIP = 25;
34 final int CLOSE = 26; 34 final int CLOSE = 26;
35 final int FREE = 27; 35 final int FREE = 27;
36 36
37 final int LAST = FREE; 37 final int LAST = FREE;
OLDNEW
« no previous file with comments | « utils/archive/options.dart ('k') | utils/archive/reader.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698