diff options
author | tfarina <tfarina@chromium.org> | 2015-05-13 15:10:15 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-05-13 22:11:01 +0000 |
commit | a311635161697b6fa55af300614beda7339f6bbd (patch) | |
tree | a9de56712788c9ad778ceb961729a1a09b7aa9c8 /base/pickle.h | |
parent | 9d7af519a13a1a5f169a039efc4d39c2737d71fe (diff) | |
download | chromium_src-a311635161697b6fa55af300614beda7339f6bbd.zip chromium_src-a311635161697b6fa55af300614beda7339f6bbd.tar.gz chromium_src-a311635161697b6fa55af300614beda7339f6bbd.tar.bz2 |
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}
Diffstat (limited to 'base/pickle.h')
-rw-r--r-- | base/pickle.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/base/pickle.h b/base/pickle.h index e6b9d81..9589e2aa 100644 --- a/base/pickle.h +++ b/base/pickle.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_PICKLE_H__ -#define BASE_PICKLE_H__ +#ifndef BASE_PICKLE_H_ +#define BASE_PICKLE_H_ #include <string> @@ -304,4 +304,4 @@ class BASE_EXPORT Pickle { FRIEND_TEST_ALL_PREFIXES(PickleTest, FindNextOverflow); }; -#endif // BASE_PICKLE_H__ +#endif // BASE_PICKLE_H_ |