Index: Source/bindings/core/dart/DartService.cpp |
diff --git a/Source/bindings/core/dart/DartService.cpp b/Source/bindings/core/dart/DartService.cpp |
index f95bb095722bdeff90138d9067ede2dd702ae7e5..b18ccbc3e22b81faeb128dace3347efc934c8508 100644 |
--- a/Source/bindings/core/dart/DartService.cpp |
+++ b/Source/bindings/core/dart/DartService.cpp |
@@ -35,4 +35,11 @@ intptr_t DartService::GetServerPort() |
return dart::bin::VmServiceServer::GetServerPort(); |
} |
+ |
+void DartService::DecompressAssets(const uint8_t* input, unsigned inputLen, uint8_t** output, unsigned* outputLength) |
+{ |
+ dart::bin::VmServiceServer::DecompressAssets(input, inputLen, output, outputLength); |
+} |
+ |
+ |
} |