summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-16 23:41:31 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-16 23:41:31 +0000
commitb353e6983bdf9bd935b97bb5a7f225f246089fba (patch)
treef81ff81a5d41596766b9335d3814df753c14b7a5
parent1b02b72b6399a2d028cc2144bb426b96d14bd79b (diff)
downloadchromium_src-b353e6983bdf9bd935b97bb5a7f225f246089fba.zip
chromium_src-b353e6983bdf9bd935b97bb5a7f225f246089fba.tar.gz
chromium_src-b353e6983bdf9bd935b97bb5a7f225f246089fba.tar.bz2
base/i18n: Remove unneeded includes in case_conversion.*
These includes are not needed anymore since r84855. BUG=None TEST=None R=evan@chromium.org Review URL: http://codereview.chromium.org/7032008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@85559 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--base/i18n/case_conversion.cc1
-rw-r--r--base/i18n/case_conversion.h8
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_