forked from pool/nodejs-electron
29 lines
1.2 KiB
Diff
29 lines
1.2 KiB
Diff
|
From d852bf71654ae63d5e8e6624652584a9adf1df6f Mon Sep 17 00:00:00 2001
|
||
|
From: Jose Dapena Paz <jdapena@igalia.com>
|
||
|
Date: Wed, 15 May 2024 17:35:08 +0000
|
||
|
Subject: [PATCH] IWYU: missing include for usage of std::optional in
|
||
|
text_decoder.h
|
||
|
|
||
|
Bug: 41455655
|
||
|
Change-Id: I8902831e823760d455ca274bfe45b44be9e947f5
|
||
|
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5541275
|
||
|
Reviewed-by: Joshua Bell <jsbell@chromium.org>
|
||
|
Commit-Queue: Joshua Bell <jsbell@chromium.org>
|
||
|
Cr-Commit-Position: refs/heads/main@{#1301397}
|
||
|
---
|
||
|
third_party/blink/renderer/modules/encoding/text_decoder.h | 1 +
|
||
|
1 file changed, 1 insertion(+)
|
||
|
|
||
|
diff --git a/third_party/blink/renderer/modules/encoding/text_decoder.h b/third_party/blink/renderer/modules/encoding/text_decoder.h
|
||
|
index 02452acb7306b6..9a947aab21b255 100644
|
||
|
--- a/third_party/blink/renderer/modules/encoding/text_decoder.h
|
||
|
+++ b/third_party/blink/renderer/modules/encoding/text_decoder.h
|
||
|
@@ -32,6 +32,7 @@
|
||
|
#define THIRD_PARTY_BLINK_RENDERER_MODULES_ENCODING_TEXT_DECODER_H_
|
||
|
|
||
|
#include <memory>
|
||
|
+#include <optional>
|
||
|
|
||
|
#include "third_party/blink/renderer/bindings/core/v8/v8_typedefs.h"
|
||
|
#include "third_party/blink/renderer/bindings/modules/v8/v8_text_decode_options.h"
|