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

Unified Diff: utils/archive/utils.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/reader.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/archive/utils.dart
diff --git a/utils/archive/utils.dart b/utils/archive/utils.dart
index 433cd9abba0547249def3437fd1336fdadcda4f2..29987f0dfdf1a5e3f52454420170a3c2cc857f96 100644
--- a/utils/archive/utils.dart
+++ b/utils/archive/utils.dart
@@ -30,7 +30,7 @@ SendPort _newServicePort() native "Archive_ServicePort";
*
* Returns a future that completes with the C extension's reply.
*/
-Future call(int requestType, int id, [List args]) {
+Future call(int requestType, [int id, List args]) {
var fullArgs = [requestType, id];
if (args != null) fullArgs.addAll(args);
return servicePort.call(listForC(fullArgs)).transform((response) {
« no previous file with comments | « utils/archive/reader.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698