Files
brave-core/components/script_injector
cdesouza-chromium eff677dd37 [IWYU] Dropping several superfluous std inclusions (#32803)
This PR removes several superfluous inclusions for `<map>`, `<vector>`,
and `<string>`. This is a mechanical change.

```bash
git ls-files components | grep '\.h$' | xargs grep -l '<vector>$' | \
  xargs grep -L std::vector | \
  xargs ../tools/add_header.py --remove --header '<vector>'

git ls-files components | grep '\.h$' | xargs grep -l '<string>$' | \
  xargs grep -L std::vector | xargs grep -L std::npos | \
  xargs ../tools/add_header.py --remove --header '<string>'

git ls-files components | grep '\.h$' | xargs grep -l '<map>$' | \
  xargs grep -L std::map | xargs grep -L std::multimap | \
  xargs ../tools/add_header.py --remove --header '<map>'
```

Bug: https://github.com/brave/brave-browser/issues/42212
2025-12-15 07:58:59 +00:00
..