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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 5
6 class _FilterImpl extends NativeFieldWrapperClass1 implements _Filter { 6 class _FilterImpl extends NativeFieldWrapperClass1 implements _Filter {
7 void process(List<int> data) native "Filter_Process"; 7 void process(List<int> data) native "Filter_Process";
8 8
9 List<int> processed({bool flush: true}) native "Filter_Processed"; 9 List<int> processed({bool flush: true, bool end: false})
10 native "Filter_Processed";
10 11
11 void end() native "Filter_End"; 12 void end() native "Filter_End";
12 } 13 }
13 14
14 class _ZLibInflateFilter extends _FilterImpl { 15 class _ZLibInflateFilter extends _FilterImpl {
15 _ZLibInflateFilter() { 16 _ZLibInflateFilter() {
16 _init(); 17 _init();
17 } 18 }
18 void _init() native "Filter_CreateZLibInflate"; 19 void _init() native "Filter_CreateZLibInflate";
19 } 20 }
20 21
21 class _ZLibDeflateFilter extends _FilterImpl { 22 class _ZLibDeflateFilter extends _FilterImpl {
22 _ZLibDeflateFilter(bool gzip, int level) { 23 _ZLibDeflateFilter(bool gzip, int level) {
23 _init(gzip, level); 24 _init(gzip, level);
24 } 25 }
25 void _init(bool gzip, int level) native "Filter_CreateZLibDeflate"; 26 void _init(bool gzip, int level) native "Filter_CreateZLibDeflate";
26 } 27 }
27 28
28 patch class _Filter { 29 patch class _Filter {
29 /* patch */ static _Filter newZLibDeflateFilter(bool gzip, int level) 30 /* patch */ static _Filter newZLibDeflateFilter(bool gzip, int level)
30 => new _ZLibDeflateFilter(gzip, level); 31 => new _ZLibDeflateFilter(gzip, level);
31 /* patch */ static _Filter newZLibInflateFilter() => new _ZLibInflateFilter(); 32 /* patch */ static _Filter newZLibInflateFilter() => new _ZLibInflateFilter();
32 } 33 }
33 34
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698