diff options
-rw-r--r-- | base/crypto/capi_util.h | 4 | ||||
-rw-r--r-- | base/i18n/file_util_icu.h | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/base/crypto/capi_util.h b/base/crypto/capi_util.h index 9f26403..42adfe1 100644 --- a/base/crypto/capi_util.h +++ b/base/crypto/capi_util.h @@ -3,7 +3,7 @@ // found in the LICENSE file. #ifndef BASE_CRYPTO_CAPI_UTIL_H_ -#define BASE_CRYPTO_CAPI_UTIl_H_ +#define BASE_CRYPTO_CAPI_UTIL_H_ #include <windows.h> #include <wincrypt.h> @@ -28,4 +28,4 @@ BOOL CryptAcquireContextLocked(HCRYPTPROV* prov, } // namespace base -#endif // BASE_CRYPTO_CAPI_UTIl_H_ +#endif // BASE_CRYPTO_CAPI_UTIL_H_ diff --git a/base/i18n/file_util_icu.h b/base/i18n/file_util_icu.h index 54ddb08..b4127d9 100644 --- a/base/i18n/file_util_icu.h +++ b/base/i18n/file_util_icu.h @@ -2,6 +2,9 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#ifndef BASE_I18N_FILE_UTIL_ICU_H_ +#define BASE_I18N_FILE_UTIL_ICU_H_ + // File utilities that use the ICU library go in this file. #include <string> @@ -33,3 +36,5 @@ void ReplaceIllegalCharactersInPath(FilePath::StringType* file_name, bool LocaleAwareCompareFilenames(const FilePath& a, const FilePath& b); } // namespace file_util + +#endif // BASE_I18N_FILE_UTIL_ICU_H_ |