The file base/mac/bind_objc_block.h only expose base::BindBlock
(and base::BindBlockArc) templated method. If the method is not
used, then the include is unnecessary and can be removed.
Automated using the following command:
for file in $(git grep -l base/mac/bind_objc_block.h); do
if ! grep -q BindBlock $file; then
sed -i '' -e '/base\/mac\/bind_objc_block.h/d' $file
fi
done
Bug: none
Change-Id: Ia9a172fbc114766a42b1a3c6ef2b8f7293623da1
Reviewed-on: https://chromium-review.googlesource.com/1018485
Reviewed-by: Yuwei Huang <yuweih@chromium.org>
Commit-Queue: Sylvain Defresne <sdefresne@chromium.org>
Cr-Commit-Position: refs/heads/master@{#552087}