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_frame | |
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_frame')
-rw-r--r-- | chrome_frame/http_negotiate.cc | 1 | ||||
-rw-r--r-- | chrome_frame/simple_resource_loader.cc | 1 | ||||
-rw-r--r-- | chrome_frame/test/http_negotiate_unittest.cc | 1 | ||||
-rw-r--r-- | chrome_frame/test/test_with_web_server.h | 1 | ||||
-rw-r--r-- | chrome_frame/urlmon_moniker.cc | 1 | ||||
-rw-r--r-- | chrome_frame/urlmon_url_request.cc | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/chrome_frame/http_negotiate.cc b/chrome_frame/http_negotiate.cc index db51fd5..dd62de1 100644 --- a/chrome_frame/http_negotiate.cc +++ b/chrome_frame/http_negotiate.cc @@ -11,6 +11,7 @@ #include "base/logging.h" #include "base/scoped_ptr.h" #include "base/string_util.h" +#include "base/utf_string_conversions.h" #include "chrome_frame/bho.h" #include "chrome_frame/exception_barrier.h" diff --git a/chrome_frame/simple_resource_loader.cc b/chrome_frame/simple_resource_loader.cc index e5f2924..6e0fcb3 100644 --- a/chrome_frame/simple_resource_loader.cc +++ b/chrome_frame/simple_resource_loader.cc @@ -13,6 +13,7 @@ #include "base/path_service.h" #include "base/i18n/rtl.h" #include "base/string_util.h" +#include "base/utf_string_conversions.h" #include "base/win_util.h" const wchar_t kLocalesDirName[] = L"Locales"; diff --git a/chrome_frame/test/http_negotiate_unittest.cc b/chrome_frame/test/http_negotiate_unittest.cc index afba216..0ef8a43 100644 --- a/chrome_frame/test/http_negotiate_unittest.cc +++ b/chrome_frame/test/http_negotiate_unittest.cc @@ -8,6 +8,7 @@ #include "base/scoped_bstr_win.h" #include "base/scoped_comptr_win.h" #include "base/string_util.h" +#include "base/utf_string_conversions.h" #include "chrome_frame/http_negotiate.h" #include "chrome_frame/html_utils.h" #include "chrome_frame/test/chrome_frame_test_utils.h" diff --git a/chrome_frame/test/test_with_web_server.h b/chrome_frame/test/test_with_web_server.h index 862b271..f223009 100644 --- a/chrome_frame/test/test_with_web_server.h +++ b/chrome_frame/test/test_with_web_server.h @@ -9,6 +9,7 @@ #include <string> #include "base/string_util.h" +#include "base/utf_string_conversions.h" #include "chrome_frame/test/http_server.h" #include "chrome_frame/test/test_server.h" #include "testing/gtest/include/gtest/gtest.h" diff --git a/chrome_frame/urlmon_moniker.cc b/chrome_frame/urlmon_moniker.cc index cd55faa..452a9a6 100644 --- a/chrome_frame/urlmon_moniker.cc +++ b/chrome_frame/urlmon_moniker.cc @@ -7,6 +7,7 @@ #include <shlguid.h> #include "base/string_util.h" +#include "base/utf_string_conversions.h" #include "chrome_frame/bho.h" #include "chrome_frame/bind_context_info.h" #include "chrome_frame/exception_barrier.h" diff --git a/chrome_frame/urlmon_url_request.cc b/chrome_frame/urlmon_url_request.cc index da255b5..47f34ac 100644 --- a/chrome_frame/urlmon_url_request.cc +++ b/chrome_frame/urlmon_url_request.cc @@ -11,6 +11,7 @@ #include "base/message_loop.h" #include "base/scoped_ptr.h" #include "base/string_number_conversions.h" +#include "base/utf_string_conversions.h" #include "chrome_frame/bind_context_info.h" #include "chrome_frame/chrome_frame_activex_base.h" #include "chrome_frame/extra_system_apis.h" |