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

Unified Diff: runtime/bin/filter_patch.dart

Issue 14962006: Actually end a ZLib stream with a Z_FINISH marker. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 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/filter_patch.dart
diff --git a/runtime/bin/filter_patch.dart b/runtime/bin/filter_patch.dart
index 5a0424189ecb12b2e3b7633421d6032165a7b66e..b549aafe0c5723eab3301557a0c2bc631b3f944a 100644
--- a/runtime/bin/filter_patch.dart
+++ b/runtime/bin/filter_patch.dart
@@ -6,7 +6,8 @@
class _FilterImpl extends NativeFieldWrapperClass1 implements _Filter {
void process(List<int> data) native "Filter_Process";
- List<int> processed({bool flush: true}) native "Filter_Processed";
+ List<int> processed({bool flush: true, bool end: false})
+ native "Filter_Processed";
void end() native "Filter_End";
}

Powered by Google App Engine
This is Rietveld 408576698