From be1ce6a7b2fa7e9622e5b249abd5fab478b6ca05 Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Tue, 3 Aug 2010 14:35:22 +0000 Subject: 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 --- webkit/database/database_util_unittest.cc | 2 +- webkit/database/databases_table_unittest.cc | 1 + webkit/database/quota_table_unittest.cc | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) (limited to 'webkit/database') diff --git a/webkit/database/database_util_unittest.cc b/webkit/database/database_util_unittest.cc index edcc25f..f6e3e2c 100644 --- a/webkit/database/database_util_unittest.cc +++ b/webkit/database/database_util_unittest.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "base/string_util.h" +#include "base/utf_string_conversions.h" #include "testing/gtest/include/gtest/gtest.h" #include "webkit/database/database_util.h" diff --git a/webkit/database/databases_table_unittest.cc b/webkit/database/databases_table_unittest.cc index 2d72d60..65ac2ef 100644 --- a/webkit/database/databases_table_unittest.cc +++ b/webkit/database/databases_table_unittest.cc @@ -5,6 +5,7 @@ #include "app/sql/connection.h" #include "app/sql/statement.h" #include "base/string_util.h" +#include "base/utf_string_conversions.h" #include "testing/gtest/include/gtest/gtest.h" #include "webkit/database/databases_table.h" diff --git a/webkit/database/quota_table_unittest.cc b/webkit/database/quota_table_unittest.cc index fbb59bf..de051f4 100644 --- a/webkit/database/quota_table_unittest.cc +++ b/webkit/database/quota_table_unittest.cc @@ -5,6 +5,7 @@ #include "app/sql/connection.h" #include "app/sql/statement.h" #include "base/string_util.h" +#include "base/utf_string_conversions.h" #include "testing/gtest/include/gtest/gtest.h" #include "webkit/database/quota_table.h" -- cgit v1.1