Fix checkdeps loophole

It used to be that having a missing space between #include and
the quoted file path would remove the include from consideration
by checkdeps. This CL makes that no longer be so.

Fixed: 1369334
Change-Id: I4447b791376d226198bef15d9b2ba042de91b9e7
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3927862
Reviewed-by: danakj <danakj@chromium.org>
Owners-Override: danakj <danakj@chromium.org>
Commit-Queue: Avi Drissman <avi@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1053640}
NOKEYCHECK=True
GitOrigin-RevId: 25af363bdbcf8a9c66b01d9eb873e7752ce18c36
diff --git a/DEPS b/DEPS
index bfe61b6..fde2330 100644
--- a/DEPS
+++ b/DEPS
@@ -8,6 +8,8 @@
   # Base test_runner includes.
   '+base/bind.h',
   '+base/test',
+  # Hooking up internal logging references.
+  '+base/logging.h',
   # The lib will be able to use abseil, but without being imported directly in
   # chromium.
   '+absl',
diff --git a/glog/logging.h b/glog/logging.h
index 3964b76..bc6667b 100644
--- a/glog/logging.h
+++ b/glog/logging.h
@@ -1,9 +1,10 @@
-// Copyright 2020 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
+// Copyright 2020 The Chromium Authors
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
 
 #ifndef SHELL_ENCRYPTION_GLOG_H_
 #define SHELL_ENCRYPTION_GLOG_H_
 
-#include"base/logging.h"
+#include "base/logging.h"
 
-#endif	// SHELL_ENCRYPTION_GLOG_H_
+#endif  // SHELL_ENCRYPTION_GLOG_H_