add-cstring-for-std-strlen-in-web_view_impl.cc.patch 1006 B

123456789101112131415161718192021222324252627
  1. From 2e14a3ac178ee87aa9154e5a15dcd986af1b6059 Mon Sep 17 00:00:00 2001
  2. From: Stephan Hartmann <stha09@googlemail.com>
  3. Date: Tue, 28 Mar 2023 14:34:55 +0000
  4. Subject: [PATCH] IWYU: add cstring for std::strlen in web_view_impl.cc
  5. Bug: 957519
  6. Change-Id: I15ad1e905eda3d96bbf164f5df8f3cf8e02bc370
  7. Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4376772
  8. Reviewed-by: Alex Ilin <alexilin@chromium.org>
  9. Commit-Queue: Alex Ilin <alexilin@chromium.org>
  10. Cr-Commit-Position: refs/heads/main@{#1123011}
  11. ---
  12. chrome/test/chromedriver/chrome/web_view_impl.cc | 1 +
  13. 1 file changed, 1 insertion(+)
  14. diff --git a/chrome/test/chromedriver/chrome/web_view_impl.cc b/chrome/test/chromedriver/chrome/web_view_impl.cc
  15. index f726627e88d..d96d481d0bc 100644
  16. --- a/chrome/test/chromedriver/chrome/web_view_impl.cc
  17. +++ b/chrome/test/chromedriver/chrome/web_view_impl.cc
  18. @@ -6,6 +6,7 @@
  19. #include <stddef.h>
  20. #include <algorithm>
  21. +#include <cstring>
  22. #include <memory>
  23. #include <queue>
  24. #include <utility>