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

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: I960875650dacb7ec78f04666bbbf22147e649461
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2164811
Auto-Submit: Hans Wennborg <[email protected]>
Commit-Queue: Jeremy Roman <[email protected]>
Reviewed-by: Jeremy Roman <[email protected]>
Cr-Commit-Position: refs/heads/master@{#762823}
diff --git a/gin/context_holder.cc b/gin/context_holder.cc
index 346256f..1148717 100644
--- a/gin/context_holder.cc
+++ b/gin/context_holder.cc
@@ -4,7 +4,7 @@
 
 #include "gin/public/context_holder.h"
 
-#include "base/logging.h"
+#include "base/check.h"
 #include "gin/per_context_data.h"
 
 namespace gin {