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"