summaryrefslogtreecommitdiffstats
path: root/base/i18n
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-26 18:38:11 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-26 18:38:11 +0000
commita3b9f515c63eb6081ea4d473eb6a79ad52bfb359 (patch)
tree014cfc36758b59ed62431763aba9056f4298229d /base/i18n
parent3841e0ff75ccc09a587d898afdf3993129c97050 (diff)
downloadchromium_src-a3b9f515c63eb6081ea4d473eb6a79ad52bfb359.zip
chromium_src-a3b9f515c63eb6081ea4d473eb6a79ad52bfb359.tar.gz
chromium_src-a3b9f515c63eb6081ea4d473eb6a79ad52bfb359.tar.bz2
Fix 2 include guards found by my script
BUG=none TEST=none TBR=erg Review URL: http://codereview.chromium.org/3059007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53652 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/i18n')
-rw-r--r--base/i18n/file_util_icu.h5
1 files changed, 5 insertions, 0 deletions
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_