diff options
Diffstat (limited to 'base')
-rw-r--r-- | base/i18n/case_conversion.cc | 1 | ||||
-rw-r--r-- | base/i18n/case_conversion.h | 8 |
2 files changed, 3 insertions, 6 deletions
diff --git a/base/i18n/case_conversion.cc b/base/i18n/case_conversion.cc index 2762505..4aa9028 100644 --- a/base/i18n/case_conversion.cc +++ b/base/i18n/case_conversion.cc @@ -4,7 +4,6 @@ #include "base/i18n/case_conversion.h" -#include "base/utf_string_conversions.h" #include "unicode/unistr.h" namespace base { diff --git a/base/i18n/case_conversion.h b/base/i18n/case_conversion.h index cb62da1..ecbfba1 100644 --- a/base/i18n/case_conversion.h +++ b/base/i18n/case_conversion.h @@ -2,12 +2,10 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef BASE_I18N_CASE_CONVERSION_ -#define BASE_I18N_CASE_CONVERSION_ +#ifndef BASE_I18N_CASE_CONVERSION_H_ +#define BASE_I18N_CASE_CONVERSION_H_ #pragma once -#include <string> - #include "base/string16.h" namespace base { @@ -22,4 +20,4 @@ string16 ToUpper(const string16& string); } // namespace i18n } // namespace base -#endif // BASE_I18N_CASE_CONVERSION_ +#endif // BASE_I18N_CASE_CONVERSION_H_ |