27 lines
962 B
Text
27 lines
962 B
Text
|
Patch-Source: https://github.com/stha09/chromium-patches/blob/chromium-102-patchset-6/chromium-102-fenced_frame_utils-include.patch
|
||
|
From 7c135a291184b59a59643ed6a8c40b4405ac0175 Mon Sep 17 00:00:00 2001
|
||
|
From: Stephan Hartmann <stha09@googlemail.com>
|
||
|
Date: Wed, 27 Apr 2022 16:01:01 +0000
|
||
|
Subject: [PATCH] IWYU: add cstring for std::strlen in fenced_frame_utils
|
||
|
|
||
|
---
|
||
|
third_party/blink/common/fenced_frame/fenced_frame_utils.cc | 2 ++
|
||
|
1 file changed, 2 insertions(+)
|
||
|
|
||
|
diff --git a/third_party/blink/common/fenced_frame/fenced_frame_utils.cc b/third_party/blink/common/fenced_frame/fenced_frame_utils.cc
|
||
|
index 9e2d3ad..68f4823 100644
|
||
|
--- a/third_party/blink/common/fenced_frame/fenced_frame_utils.cc
|
||
|
+++ b/third_party/blink/common/fenced_frame/fenced_frame_utils.cc
|
||
|
@@ -4,6 +4,8 @@
|
||
|
|
||
|
#include "third_party/blink/public/common/fenced_frame/fenced_frame_utils.h"
|
||
|
|
||
|
+#include <cstring>
|
||
|
+
|
||
|
#include "base/guid.h"
|
||
|
#include "base/strings/string_util.h"
|
||
|
|
||
|
--
|
||
|
2.35.1
|
||
|
|