From a91bdd5038a594a877593bc121bd369f24f1e0db Mon Sep 17 00:00:00 2001 From: Victor Hugo Vianna Silva Date: Wed, 28 Jul 2021 21:35:07 +0000 Subject: [automated] Drop needless includes in /components/zucchini This is among the most costful includes for the Chromium build. https://commondatastorage.googleapis.com/chromium-browser-clang/include-analysis.html This batch of CLs attempts to detect and remove leftover includes with a heuristic: choose files which don't contain 'std::vector' or 'push_back'. This doesn't really guarantee that std::vector is not being used, as shown by the snippets below, so please review carefully. ``` auto v = GetVector(); MyVectorAlias v = GetVector(); my_vector_ = GetVector(); ``` This CL was uploaded by git cl split. R=etiennep@chromium.org Bug: 1233968 Change-Id: I4f84f26bfdf81c3997cc939c3d8a692e17ddde9a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3059580 Auto-Submit: Victor Vianna Reviewed-by: Etienne Pierre-Doray Commit-Queue: Etienne Pierre-Doray Cr-Commit-Position: refs/heads/master@{#906383} NOKEYCHECK=True GitOrigin-RevId: 9057c66a34aedd20d4eced2562f80c8e50e8771e --- reference_bytes_mixer.h | 1 - 1 file changed, 1 deletion(-) (limited to 'reference_bytes_mixer.h') diff --git a/reference_bytes_mixer.h b/reference_bytes_mixer.h index 05407f1..3cbf187 100644 --- a/reference_bytes_mixer.h +++ b/reference_bytes_mixer.h @@ -8,7 +8,6 @@ #include #include -#include #include "components/zucchini/buffer_view.h" #include "components/zucchini/image_utils.h" -- cgit v1.2.3