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/base/ip_endpoint.cc b/net/base/ip_endpoint.cc index 3d81539..749d872e 100644 --- a/net/base/ip_endpoint.cc +++ b/net/base/ip_endpoint.cc
@@ -17,7 +17,8 @@ #include <tuple> -#include "base/logging.h" +#include "base/check.h" +#include "base/notreached.h" #include "base/strings/string_number_conversions.h" #include "base/sys_byteorder.h" #include "net/base/ip_address.h"