diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-06 22:17:27 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-06 22:17:27 +0000 |
commit | c7892f03448cb367ce90a1592d55a6996814fb1d (patch) | |
tree | 83d32438c95f16e207f55706aa0a1c1bd6c1e127 /webkit/database | |
parent | 7d2d0d0e99f9e93c5d11a2276678a564a327d19e (diff) | |
download | chromium_src-c7892f03448cb367ce90a1592d55a6996814fb1d.zip chromium_src-c7892f03448cb367ce90a1592d55a6996814fb1d.tar.gz chromium_src-c7892f03448cb367ce90a1592d55a6996814fb1d.tar.bz2 |
webkit/database: string_util.h -> utf_string_conversions.h fix.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/668230
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40850 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/database')
-rw-r--r-- | webkit/database/database_tracker.cc | 2 | ||||
-rw-r--r-- | webkit/database/database_tracker_unittest.cc | 2 | ||||
-rw-r--r-- | webkit/database/database_util.cc | 2 | ||||
-rw-r--r-- | webkit/database/quota_table.cc | 3 |
4 files changed, 5 insertions, 4 deletions
diff --git a/webkit/database/database_tracker.cc b/webkit/database/database_tracker.cc index b407830..bc7dd47 100644 --- a/webkit/database/database_tracker.cc +++ b/webkit/database/database_tracker.cc @@ -13,7 +13,7 @@ #include "base/basictypes.h" #include "base/file_path.h" #include "base/file_util.h" -#include "base/string_util.h" +#include "base/utf_string_conversions.h" #include "net/base/net_errors.h" #include "webkit/database/databases_table.h" #include "webkit/database/quota_table.h" diff --git a/webkit/database/database_tracker_unittest.cc b/webkit/database/database_tracker_unittest.cc index 55d13e1..88e8981 100644 --- a/webkit/database/database_tracker_unittest.cc +++ b/webkit/database/database_tracker_unittest.cc @@ -6,8 +6,8 @@ #include "base/file_util.h" #include "base/scoped_ptr.h" #include "base/scoped_temp_dir.h" -#include "base/string_util.h" #include "base/time.h" +#include "base/utf_string_conversions.h" #include "net/base/test_completion_callback.h" #include "testing/gtest/include/gtest/gtest.h" #include "webkit/database/database_tracker.h" diff --git a/webkit/database/database_util.cc b/webkit/database/database_util.cc index bf5b901..42af530 100644 --- a/webkit/database/database_util.cc +++ b/webkit/database/database_util.cc @@ -4,7 +4,7 @@ #include "webkit/database/database_util.h" -#include "base/string_util.h" +#include "base/utf_string_conversions.h" #include "third_party/WebKit/WebKit/chromium/public/WebSecurityOrigin.h" #include "third_party/WebKit/WebKit/chromium/public/WebString.h" #include "webkit/database/database_tracker.h" diff --git a/webkit/database/quota_table.cc b/webkit/database/quota_table.cc index 2b6507e..194f475 100644 --- a/webkit/database/quota_table.cc +++ b/webkit/database/quota_table.cc @@ -6,7 +6,8 @@ #include "app/sql/connection.h" #include "app/sql/statement.h" -#include "base/string_util.h" +#include "base/logging.h" +#include "base/utf_string_conversions.h" namespace webkit_database { |