Fix header guards in various dirs.
Generated mechanically as follows:
git ls-files '*.h' | grep "^$DIR" | \
xargs parallel cpplint.py --filter=-,+build/header_guard -- 2>&1 | \
grep build/header_guard | tools/apply_cpplint_header_guard.py
Bug: 1200694
Change-Id: I128daa6b322b6d1c2bf7748b7bb03d1d68cfc2d9
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2848538
Reviewed-by: Boris Sazonov <[email protected]>
Commit-Queue: Lei Zhang <[email protected]>
Owners-Override: Lei Zhang <[email protected]>
Cr-Commit-Position: refs/heads/master@{#876278}
diff --git a/gin/debug_impl.h b/gin/debug_impl.h
index b0b7931..fafb98cd 100644
--- a/gin/debug_impl.h
+++ b/gin/debug_impl.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef GIN_PUBLIC_DEBUG_IMPL_H_
-#define GIN_PUBLIC_DEBUG_IMPL_H_
+#ifndef GIN_DEBUG_IMPL_H_
+#define GIN_DEBUG_IMPL_H_
#include "gin/public/debug.h"
#include "v8/include/v8.h"
@@ -17,4 +17,4 @@
} // namespace gin
-#endif // GIN_PUBLIC_DEBUG_IMPL_H_
+#endif // GIN_DEBUG_IMPL_H_