summaryrefslogtreecommitdiffstats
path: root/base/build_time.h
diff options
context:
space:
mode:
authorbnc <bnc@chromium.org>2015-03-09 13:47:44 -0700
committerCommit bot <commit-bot@chromium.org>2015-03-09 20:48:48 +0000
commit2220bd6553b4aae764ed66b24f5aa6e398c70b68 (patch)
tree42a41c557a79bf89067e9db4ede1a77d270e1cf8 /base/build_time.h
parent79f7a57302cae3f7afcd53c6dff542e32bada999 (diff)
downloadchromium_src-2220bd6553b4aae764ed66b24f5aa6e398c70b68.zip
chromium_src-2220bd6553b4aae764ed66b24f5aa6e398c70b68.tar.gz
chromium_src-2220bd6553b4aae764ed66b24f5aa6e398c70b68.tar.bz2
Revert of base: Fix/add header #ifndef guards. (patchset #2 id:20001 of https://codereview.chromium.org/985003004/)
Reason for revert: This seems to be causing tree closing compile failure https://build.chromium.org/p/chromium/builders/Android/builds/36135/steps/compile/logs/stdio. Original issue's description: > base: Fix/add header #ifndef guards. > > Header guards should be defined based on the path and file name of the > header file. Some headers have it wrong, some are missing the guards, > and some just have the matching comment wrong. > > R=Nico > BUG=464816 > > Committed: https://crrev.com/301b392761fd8f66f3a701ab1dd011c6e7a55e19 > Cr-Commit-Position: refs/heads/master@{#319722} TBR=thakis@chromium.org,danakj@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=464816 Review URL: https://codereview.chromium.org/989343002 Cr-Commit-Position: refs/heads/master@{#319728}
Diffstat (limited to 'base/build_time.h')
-rw-r--r--base/build_time.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/base/build_time.h b/base/build_time.h
index 4f0abc3..c7df479 100644
--- a/base/build_time.h
+++ b/base/build_time.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 BASE_BUILD_TIME_H_
-#define BASE_BUILD_TIME_H_
+#ifndef BASE_BUILD_TIME_
+#define BASE_BUILD_TIME_
#include "base/base_export.h"
#include "base/time/time.h"
@@ -25,4 +25,4 @@ Time BASE_EXPORT GetBuildTime();
} // namespace base
-#endif // BASE_BUILD_TIME_H_
+#endif // BASE_BUILD_TIME_