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

Unified Diff: sdk/lib/_internal/compiler/implementation/lib/io_patch.dart

Issue 12481016: And another... :( (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add dummy implementation to sdk/lib/_internal/compiler/implementation/lib/io_patch.dart Created 7 years, 9 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 | « runtime/bin/filter_patch.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
diff --git a/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart b/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
index ed10807eb18285a95cf23ba8e9a1c917d78c9230..9354a6bf4c57eae9da614e01d81c3005e7af69f4 100644
--- a/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
+++ b/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
@@ -235,3 +235,12 @@ patch class _WindowsCodePageEncoder {
throw new UnsupportedError("_WindowsCodePageEncoder._encodeString");
}
}
+
+patch class _Filter {
+ patch static _Filter newZLibDeflateFilter(bool gzip, int level) {
+ throw new UnsupportedError("newZLibDeflateFilter");
+ }
+ patch static _Filter newZLibInflateFilter() {
+ throw new UnsupportedError("newZLibInflateFilter");
+ }
+}
« no previous file with comments | « runtime/bin/filter_patch.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698