Merge "[vulkan] Fix GoldfishAddressSpaceHostMemoryAllocator build on Fuchsia"
diff --git a/shared/OpenglCodecCommon/goldfish_address_space_fuchsia.impl b/shared/OpenglCodecCommon/goldfish_address_space_fuchsia.impl
index c3437fc..6a10ca6 100644
--- a/shared/OpenglCodecCommon/goldfish_address_space_fuchsia.impl
+++ b/shared/OpenglCodecCommon/goldfish_address_space_fuchsia.impl
@@ -18,6 +18,7 @@
 #include <lib/fdio/fdio.h>
 #include <lib/zx/channel.h>
 #include <lib/zx/vmo.h>
+#include <log/log.h>
 #include <stdlib.h>
 #include <sys/stat.h>
 #include <sys/types.h>
@@ -188,11 +189,11 @@
 {
 }
 
-long GoldfishAddressSpaceHostMemoryAllocator::hostMalloc(uint64_t offset, size_t size)
+long GoldfishAddressSpaceHostMemoryAllocator::hostMalloc(GoldfishAddressSpaceBlock *block, size_t size)
 {
     return 0;
 }
 
-void GoldfishAddressSpaceHostMemoryAllocator::hostFree(uint64_t offset)
+void GoldfishAddressSpaceHostMemoryAllocator::hostFree(GoldfishAddressSpaceBlock *block)
 {
 }