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

Issue 11198034: Introduce (private) ZLibFilter to dart:io. (Closed)

Created:
8 years, 2 months ago by Anders Johnsen
Modified:
8 years, 1 month ago
Reviewers:
CC:
reviews_dartlang.org
Visibility:
Public.

Description

Introduce (private) ZLibFilter to dart:io. This is to be used in gzip to handle http compression. BUG=

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+18640 lines, -7 lines) Patch
M runtime/bin/bin.gypi View 1 chunk +1 line, -0 lines 0 comments Download
M runtime/bin/builtin_impl_sources.gypi View 1 chunk +2 lines, -0 lines 0 comments Download
M runtime/bin/builtin_natives.cc View 1 chunk +1 line, -0 lines 0 comments Download
A runtime/bin/filter.h View 1 chunk +42 lines, -0 lines 0 comments Download
A runtime/bin/filter.cc View 1 chunk +76 lines, -0 lines 0 comments Download
A + runtime/bin/filter.dart View 1 chunk +7 lines, -8 lines 0 comments Download
A runtime/bin/filter_impl.dart View 1 chunk +37 lines, -0 lines 0 comments Download
M runtime/bin/io_sources.gypi View 1 chunk +2 lines, -0 lines 0 comments Download
M runtime/dart-runtime.gyp View 1 chunk +1 line, -0 lines 0 comments Download
A runtime/third_party/zlib/CMakeLists.txt View 1 chunk +211 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/ChangeLog View 1 chunk +1409 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/FAQ View 1 chunk +368 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/INDEX View 1 chunk +68 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/Makefile View 1 chunk +5 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/Makefile.in View 1 chunk +288 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/README View 1 chunk +115 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/adler32.c View 1 chunk +179 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/compress.c View 1 chunk +80 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/configure View 1 chunk +818 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/crc32.h View 1 chunk +441 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/crc32.c View 1 chunk +425 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/deflate.h View 1 chunk +346 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/deflate.c View 1 chunk +1965 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/gzclose.c View 1 chunk +25 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/gzguts.h View 1 chunk +193 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/gzlib.c View 1 chunk +620 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/gzread.c View 1 chunk +589 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/gzwrite.c View 1 chunk +565 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/infback.c View 1 chunk +640 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/inffast.h View 1 chunk +11 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/inffast.c View 1 chunk +340 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/inffixed.h View 1 chunk +94 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/inflate.h View 1 chunk +122 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/inflate.c View 1 chunk +1496 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/inftrees.h View 1 chunk +62 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/inftrees.c View 1 chunk +306 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/make_vms.com View 1 chunk +867 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/treebuild.xml View 1 chunk +116 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/trees.h View 1 chunk +128 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/trees.c View 1 chunk +1224 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/uncompr.c View 1 chunk +59 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/zconf.h View 1 chunk +506 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/zconf.h.cmakein View 1 chunk +508 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/zconf.h.in View 1 chunk +506 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/zlib.h View 1 chunk +1744 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/zlib.3 View 1 chunk +151 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/zlib.gypi View 1 chunk +50 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/zlib.map View 1 chunk +78 lines, -0 lines 0 comments Download
runtime/third_party/zlib/zlib.3.pdf View 0 chunks +-1 lines, --1 lines 0 comments Download
A runtime/third_party/zlib/zlib.pc.cmakein View 1 chunk +13 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/zlib.pc.in View 1 chunk +13 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/zlib2ansi View 1 chunk +152 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/zutil.h View 1 chunk +252 lines, -0 lines 0 comments Download
A runtime/third_party/zlib/zutil.c View 1 chunk +324 lines, -0 lines 0 comments Download

Powered by Google App Engine
This is Rietveld 408576698