From 2278675b1e52b31a3c5ea5e2d20b2cb0c3426316 Mon Sep 17 00:00:00 2001 From: tfarina Date: Mon, 17 Aug 2015 22:24:28 -0700 Subject: [PATCH] hunspell: Cleanup to fix the header include guards under google/ directory. The header include guards should match the file path from root. These entries were found using fix-include-guards.py script found attached in http://crbug.com/435361#c7. BUG=None R=rouslan@chromium.org Review URL: https://codereview.chromium.org/1293643002 Cr-Commit-Position: refs/heads/master@{#343825} --- third_party/hunspell/google/bdict.h | 6 +++--- third_party/hunspell/google/bdict_reader.h | 6 +++--- third_party/hunspell/google/bdict_writer.h | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/third_party/hunspell/google/bdict.h b/third_party/hunspell/google/bdict.h index 7219710b8604..faa7b84ced78 100644 --- a/third_party/hunspell/google/bdict.h +++ b/third_party/hunspell/google/bdict.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 CHROME_THIRD_PARTY_HUNSPELL_GOOGLE_BDICT_H__ -#define CHROME_THIRD_PARTY_HUNSPELL_GOOGLE_BDICT_H__ +#ifndef THIRD_PARTY_HUNSPELL_GOOGLE_BDICT_H_ +#define THIRD_PARTY_HUNSPELL_GOOGLE_BDICT_H_ #include "base/basictypes.h" #include "base/md5.h" @@ -208,4 +208,4 @@ class BDict { } // namespace hunspell -#endif // CHROME_THIRD_PARTY_HUNSPELL_GOOGLE_BDICT_H__ +#endif // THIRD_PARTY_HUNSPELL_GOOGLE_BDICT_H_ diff --git a/third_party/hunspell/google/bdict_reader.h b/third_party/hunspell/google/bdict_reader.h index 370391d908e7..c0a889f6be27 100644 --- a/third_party/hunspell/google/bdict_reader.h +++ b/third_party/hunspell/google/bdict_reader.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 CHROME_THIRD_PARTY_HUNSPELL_GOOGLE_DIC_READER_H__ -#define CHROME_THIRD_PARTY_HUNSPELL_GOOGLE_DIC_READER_H__ +#ifndef THIRD_PARTY_HUNSPELL_GOOGLE_BDICT_READER_H_ +#define THIRD_PARTY_HUNSPELL_GOOGLE_BDICT_READER_H_ #include #include @@ -150,4 +150,4 @@ class BDictReader { } // namespace hunspell -#endif // CHROME_THIRD_PARTY_HUNSPELL_GOOGLE_DIC_READER_H__ +#endif // THIRD_PARTY_HUNSPELL_GOOGLE_BDICT_READER_H_ diff --git a/third_party/hunspell/google/bdict_writer.h b/third_party/hunspell/google/bdict_writer.h index e4366d9ea187..8f5085fb7a57 100644 --- a/third_party/hunspell/google/bdict_writer.h +++ b/third_party/hunspell/google/bdict_writer.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 CHROME_THIRD_PARTY_HUNSPELL_GOOGLE_BDICT_WRITER_H__ -#define CHROME_THIRD_PARTY_HUNSPELL_GOOGLE_BDICT_WRITER_H__ +#ifndef THIRD_PARTY_HUNSPELL_GOOGLE_BDICT_WRITER_H_ +#define THIRD_PARTY_HUNSPELL_GOOGLE_BDICT_WRITER_H_ #include #include @@ -67,4 +67,4 @@ class BDictWriter { } // namespace hunspell -#endif // CHROME_THIRD_PARTY_HUNSPELL_GOOGLE_BDICT_WRITER_H__ +#endif // THIRD_PARTY_HUNSPELL_GOOGLE_BDICT_WRITER_H_ -- 2.11.4.GIT