commit | 0924470b2bde605e2054a35e78526994ec58b8fa | [log] [tgz] |
---|---|---|
author | Hans Wennborg <[email protected]> | Mon Apr 27 21:08:05 2020 |
committer | Commit Bot <[email protected]> | Mon Apr 27 21:08:05 2020 |
tree | 37c7a10b0da431723b8abf42490a8e94f17734f4 | |
parent | eabbfe3e7b74dc927a0fcd790b3b4ad0bb0058a6 [diff] [blame] |
Remove/replace unnecessary logging.h includes in .cc files (net) CHECK, CHECK_EQ etc., and NOTREACHED/NOTIMPLEMENTED have moved to the much smaller headers check.h, check_op.h, and notreached.h, respectively. This CL updates .cc files to use those headers instead when possible, with the purpose of saving compile time. (Split out from https://crrev.com/c/2164525 which also has notes on how the change was generated.) Bug: 1031540 Change-Id: Ia3fbf74ab31096a4b066735e46966be9e9f92e0d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2164832 Auto-Submit: Hans Wennborg <[email protected]> Commit-Queue: Matt Menke <[email protected]> Reviewed-by: Matt Menke <[email protected]> Cr-Commit-Position: refs/heads/master@{#763009}
diff --git a/net/reporting/reporting_test_util.cc b/net/reporting/reporting_test_util.cc index 490231d3..47ebd724 100644 --- a/net/reporting/reporting_test_util.cc +++ b/net/reporting/reporting_test_util.cc
@@ -9,9 +9,10 @@ #include <vector> #include "base/bind.h" +#include "base/check_op.h" #include "base/json/json_reader.h" -#include "base/logging.h" #include "base/memory/ptr_util.h" +#include "base/notreached.h" #include "base/strings/stringprintf.h" #include "base/test/simple_test_clock.h" #include "base/test/simple_test_tick_clock.h"