From 15e24abc1646ad9984923234a041cd0c3b8b1607 Mon Sep 17 00:00:00 2001 From: Jose Dapena Paz Date: Tue, 19 Mar 2024 16:21:06 +0000 Subject: [PATCH] IWYU: missing include for usage of std::optional in gpu_adapter_info.h MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: 41455655 Change-Id: I42d6c9f99ea7718fa87267ebcf3368d0f46f5053 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5374260 Commit-Queue: José Dapena Paz Reviewed-by: Austin Eng Cr-Commit-Position: refs/heads/main@{#1274974} --- third_party/blink/renderer/modules/webgpu/gpu_adapter_info.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/third_party/blink/renderer/modules/webgpu/gpu_adapter_info.h b/third_party/blink/renderer/modules/webgpu/gpu_adapter_info.h index 70b15d5c055aa..2084afbe6e877 100644 --- a/third_party/blink/renderer/modules/webgpu/gpu_adapter_info.h +++ b/third_party/blink/renderer/modules/webgpu/gpu_adapter_info.h @@ -5,6 +5,8 @@ #ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_WEBGPU_GPU_ADAPTER_INFO_H_ #define THIRD_PARTY_BLINK_RENDERER_MODULES_WEBGPU_GPU_ADAPTER_INFO_H_ +#include + #include "third_party/blink/renderer/platform/bindings/script_wrappable.h" #include "third_party/blink/renderer/platform/heap/collection_support/heap_vector.h" #include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"