From e7b418bc2ddad0832b849de9e9594745ee180d03 Mon Sep 17 00:00:00 2001 From: "viettrungluu@chromium.org" Date: Fri, 30 Jul 2010 19:47:47 +0000 Subject: Convert DictionaryValue's keys to std::string (from wstring). Everything now needs to be changed to avoid the deprecated wstring methods; this includes the unit tests. BUG=23581 TEST=all our tests still pass Review URL: http://codereview.chromium.org/3075010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54359 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/background_contents_service.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'chrome/browser/background_contents_service.cc') diff --git a/chrome/browser/background_contents_service.cc b/chrome/browser/background_contents_service.cc index c10d9d2..654a0a1 100644 --- a/chrome/browser/background_contents_service.cc +++ b/chrome/browser/background_contents_service.cc @@ -151,7 +151,7 @@ void BackgroundContentsService::LoadBackgroundContentsFromPrefs( CreateBackgroundContents(profile, GURL(url), frame_name, - WideToUTF16(*it)); + UTF8ToUTF16(*it)); } } -- cgit v1.1