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

Unified Diff: runtime/bin/filter_unsupported.cc

Issue 1777643003: Uses a finalizer to delete zlib filter resources (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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
Index: runtime/bin/filter_unsupported.cc
diff --git a/runtime/bin/filter_unsupported.cc b/runtime/bin/filter_unsupported.cc
index 1742559b847d0f61e37226b509dc47259b00ba65..f01b3db1ca589a6583c39d4b525c0bee9eebb1f3 100644
--- a/runtime/bin/filter_unsupported.cc
+++ b/runtime/bin/filter_unsupported.cc
@@ -16,9 +16,11 @@ void FUNCTION_NAME(Filter_CreateZLibInflate)(Dart_NativeArguments args) {
"ZLibInflater and Deflater not supported on this platform"));
}
+
void FUNCTION_NAME(Filter_CreateZLibDeflate)(Dart_NativeArguments args) {
}
+
void FUNCTION_NAME(Filter_Process)(Dart_NativeArguments args) {
}
@@ -26,9 +28,5 @@ void FUNCTION_NAME(Filter_Process)(Dart_NativeArguments args) {
void FUNCTION_NAME(Filter_Processed)(Dart_NativeArguments args) {
}
-
-void FUNCTION_NAME(Filter_End)(Dart_NativeArguments args) {
-}
-
} // namespace bin
} // namespace dart

Powered by Google App Engine
This is Rietveld 408576698