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

Unified Diff: utils/archive/read_request.dart

Issue 10832116: Attach the native entry struct to the ArchiveEntry object. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix the ISO9660 constant Created 8 years, 5 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 | « utils/archive/messaging.c ('k') | utils/archive/reader.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/archive/read_request.dart
diff --git a/utils/archive/read_request.dart b/utils/archive/read_request.dart
index 0d6ce09cf7cc0dc92c24eff14470198756021b93..151b5dd0422275fe90895ebf45257c5ad2257ee0 100644
--- a/utils/archive/read_request.dart
+++ b/utils/archive/read_request.dart
@@ -2,9 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-/**
- * The request ids for read-related messages to send to the C extension.
- */
+/** The request ids for read-related messages to send to the C extension. */
#library("read_request");
final int NEW = 0;
@@ -20,7 +18,7 @@ final int SUPPORT_FORMAT_ALL = 9;
final int SUPPORT_FORMAT_AR = 10;
final int SUPPORT_FORMAT_CPIO = 11;
final int SUPPORT_FORMAT_EMPTY = 12;
-final int SUPPORT_FORMAT_ISO9599 = 13;
+final int SUPPORT_FORMAT_ISO9660 = 13;
final int SUPPORT_FORMAT_MTREE = 14;
final int SUPPORT_FORMAT_RAW = 15;
final int SUPPORT_FORMAT_TAR = 16;
@@ -35,3 +33,5 @@ final int DATA_BLOCK = 24;
final int DATA_SKIP = 25;
final int CLOSE = 26;
final int FREE = 27;
+
+final int LAST = FREE;
« no previous file with comments | « utils/archive/messaging.c ('k') | utils/archive/reader.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698