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

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: I1c0c8450be6320577ebebe39a2cb1abc692fe8b0
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2164613
Commit-Queue: Hans Wennborg <[email protected]>
Auto-Submit: Hans Wennborg <[email protected]>
Reviewed-by: Ted Choc <[email protected]>
Reviewed-by: Mike West <[email protected]>
Cr-Commit-Position: refs/heads/master@{#763287}
diff --git a/components/ui_devtools/root_element.cc b/components/ui_devtools/root_element.cc
index a72082d6..cb04669 100644
--- a/components/ui_devtools/root_element.cc
+++ b/components/ui_devtools/root_element.cc
@@ -4,7 +4,7 @@
 
 #include "components/ui_devtools/root_element.h"
 
-#include "base/logging.h"
+#include "base/notreached.h"
 #include "components/ui_devtools/Protocol.h"
 #include "components/ui_devtools/ui_element_delegate.h"