Remove/replace unnecessary logging.h includes in .cc files (url)

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: I24902d78aeee3741b969c45d6525e2552e83c697
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2165111
Auto-Submit: Hans Wennborg <[email protected]>
Reviewed-by: Charlie Harrison <[email protected]>
Reviewed-by: Matthew Denton <[email protected]>
Commit-Queue: Matthew Denton <[email protected]>
Cr-Commit-Position: refs/heads/master@{#763048}
diff --git a/url/gurl.cc b/url/gurl.cc
index fb06480..27b470a 100644
--- a/url/gurl.cc
+++ b/url/gurl.cc
@@ -10,7 +10,7 @@
 #include <ostream>
 #include <utility>
 
-#include "base/logging.h"
+#include "base/check_op.h"
 #include "base/no_destructor.h"
 #include "base/strings/string_piece.h"
 #include "base/strings/string_util.h"