Cleanup: Fix base header include guards.
The header include guards should match the file path from root.
These entries were found using a modified version of Eric's
fix-include-guards.py script found attached in
https://code.google.com/p/chromium/issues/detail?id=435361#c7.
BUG=435361
TEST=base_unittests
R=danakj@chromium.org
Review URL: https://codereview.chromium.org/1137323003
Cr-Commit-Position: refs/heads/master@{#329731}
CrOS-Libchrome-Original-Commit: a311635161697b6fa55af300614beda7339f6bbd
diff --git a/base/tuple.h b/base/tuple.h
index 88c3075..4628aa9 100644
--- a/base/tuple.h
+++ b/base/tuple.h
@@ -25,8 +25,8 @@
// DispatchToMethod(&foo, &Foo::SomeMeth, MakeTuple(1, 2, 3));
// // foo->SomeMeth(1, 2, 3);
-#ifndef BASE_TUPLE_H__
-#define BASE_TUPLE_H__
+#ifndef BASE_TUPLE_H_
+#define BASE_TUPLE_H_
#include "base/bind_helpers.h"
@@ -329,4 +329,4 @@
MakeIndexSequence<sizeof...(OutTs)>());
}
-#endif // BASE_TUPLE_H__
+#endif // BASE_TUPLE_H_