diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-03 14:35:22 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-03 14:35:22 +0000 |
commit | be1ce6a7b2fa7e9622e5b249abd5fab478b6ca05 (patch) | |
tree | f8979e84e75cefbc8dc28180a7a6b99f5a0e34ed /chrome/common | |
parent | e28976b97eba6f8b7e5b39dba4f684c3ba6b2a6c (diff) | |
download | chromium_src-be1ce6a7b2fa7e9622e5b249abd5fab478b6ca05.zip chromium_src-be1ce6a7b2fa7e9622e5b249abd5fab478b6ca05.tar.gz chromium_src-be1ce6a7b2fa7e9622e5b249abd5fab478b6ca05.tar.bz2 |
Add #include utf_string_conversions.h to all files that use ASCIIToWide and
ASCIIToUTF16. I removed string_util includes from a few places where it
obviously wasn't needed.
In a separate pass, I'm going to remove ASCIITo* from string_util, then I'm
going to do an even later pass to find the unnecessary string_util.h includes
and remove them.
TEST=it compiles
BUG=none
Review URL: http://codereview.chromium.org/3058027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54746 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/child_process_logging_linux.cc | 1 | ||||
-rw-r--r-- | chrome/common/extensions/extension_message_bundle_unittest.cc | 1 | ||||
-rw-r--r-- | chrome/common/gpu_plugin.cc | 1 | ||||
-rw-r--r-- | chrome/common/metrics_helpers.cc | 1 | ||||
-rw-r--r-- | chrome/common/plugin_group_unittest.cc | 1 | ||||
-rw-r--r-- | chrome/common/render_messages_unittest.cc | 1 |
6 files changed, 5 insertions, 1 deletions
diff --git a/chrome/common/child_process_logging_linux.cc b/chrome/common/child_process_logging_linux.cc index 94cb34b..40ad90c 100644 --- a/chrome/common/child_process_logging_linux.cc +++ b/chrome/common/child_process_logging_linux.cc @@ -6,6 +6,7 @@ #include "base/logging.h" #include "base/string_util.h" +#include "base/utf_string_conversions.h" #include "chrome/common/gpu_info.h" #include "chrome/installer/util/google_update_settings.h" #include "googleurl/src/gurl.h" diff --git a/chrome/common/extensions/extension_message_bundle_unittest.cc b/chrome/common/extensions/extension_message_bundle_unittest.cc index 3119ef8..81ae30c 100644 --- a/chrome/common/extensions/extension_message_bundle_unittest.cc +++ b/chrome/common/extensions/extension_message_bundle_unittest.cc @@ -11,6 +11,7 @@ #include "base/linked_ptr.h" #include "base/scoped_ptr.h" #include "base/string_util.h" +#include "base/utf_string_conversions.h" #include "base/values.h" #include "chrome/common/extensions/extension_constants.h" #include "chrome/common/extensions/extension_error_utils.h" diff --git a/chrome/common/gpu_plugin.cc b/chrome/common/gpu_plugin.cc index af009f9..84ab339 100644 --- a/chrome/common/gpu_plugin.cc +++ b/chrome/common/gpu_plugin.cc @@ -6,6 +6,7 @@ #include "base/command_line.h" #include "base/string_util.h" +#include "base/utf_string_conversions.h" #include "chrome/common/chrome_switches.h" #include "gpu/gpu_plugin/gpu_plugin.h" #include "webkit/glue/plugins/plugin_list.h" diff --git a/chrome/common/metrics_helpers.cc b/chrome/common/metrics_helpers.cc index ee465e4..b0fdac1 100644 --- a/chrome/common/metrics_helpers.cc +++ b/chrome/common/metrics_helpers.cc @@ -18,7 +18,6 @@ #include "base/perftimer.h" #include "base/scoped_ptr.h" #include "base/string_number_conversions.h" -#include "base/string_util.h" // TODO(brettw) remove when ASCIIToUTF16 moves. #include "base/sys_info.h" #include "base/utf_string_conversions.h" #include "base/third_party/nspr/prtime.h" diff --git a/chrome/common/plugin_group_unittest.cc b/chrome/common/plugin_group_unittest.cc index 7def7c6..07373c3 100644 --- a/chrome/common/plugin_group_unittest.cc +++ b/chrome/common/plugin_group_unittest.cc @@ -9,6 +9,7 @@ #include "base/scoped_ptr.h" #include "base/string_util.h" +#include "base/utf_string_conversions.h" #include "base/values.h" #include "base/version.h" #include "testing/gtest/include/gtest/gtest.h" diff --git a/chrome/common/render_messages_unittest.cc b/chrome/common/render_messages_unittest.cc index 30b1446..5d590c3 100644 --- a/chrome/common/render_messages_unittest.cc +++ b/chrome/common/render_messages_unittest.cc @@ -4,6 +4,7 @@ #include "base/scoped_ptr.h" #include "base/string16.h" +#include "base/utf_string_conversions.h" #include "base/values.h" #include "chrome/common/render_messages.h" #include "testing/gtest/include/gtest/gtest.h" |