Index: gpu/command_buffer/service/shared_image/dawn_ozone_image_representation.cc
--- gpu/command_buffer/service/shared_image/dawn_ozone_image_representation.cc.orig
+++ gpu/command_buffer/service/shared_image/dawn_ozone_image_representation.cc
@@ -193,6 +193,7 @@ void DawnOzoneImageRepresentation::EndAccess() {
   if (!texture_) {
     return;
   }
+#if 0
   wgpu::SharedTextureMemoryEndAccessState end_access_desc = {};
   wgpu::SharedTextureMemoryVkImageLayoutEndState end_layout{};
   end_access_desc.nextInChain = &end_layout;
@@ -240,6 +241,12 @@ void DawnOzoneImageRepresentation::EndAccess() {
 
   texture_.Destroy();
   texture_ = nullptr;
+#else
+    LOG(ERROR) << "Failed to end access for DawnOzoneImageRepresentation";
+    texture_.Destroy();
+    texture_ = nullptr;
+    return;
+#endif
 }
 
 }  // namespace gpu
