summaryrefslogtreecommitdiffstats
path: root/chrome/browser/automation
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-05 23:08:22 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-05 23:08:22 +0000
commit68b9e72b2edf989ca77ee942250f6eb9d5b8eeeb (patch)
treed793070580ff78169d5fe301fd2e68adfca56fca /chrome/browser/automation
parent605abf9ab6b8877c1d91500c1d525b0c37e712eb (diff)
downloadchromium_src-68b9e72b2edf989ca77ee942250f6eb9d5b8eeeb.zip
chromium_src-68b9e72b2edf989ca77ee942250f6eb9d5b8eeeb.tar.gz
chromium_src-68b9e72b2edf989ca77ee942250f6eb9d5b8eeeb.tar.bz2
wstring: remove wstrings from ChildProcessInfo
Convert MetricsServices' child_process_stats_buffer_ while I'm at it. Review URL: http://codereview.chromium.org/7583016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@95680 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/automation')
-rw-r--r--chrome/browser/automation/testing_automation_provider.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/automation/testing_automation_provider.cc b/chrome/browser/automation/testing_automation_provider.cc
index 4c3d9a9..274ba4d 100644
--- a/chrome/browser/automation/testing_automation_provider.cc
+++ b/chrome/browser/automation/testing_automation_provider.cc
@@ -2631,7 +2631,7 @@ class GetChildProcessHostInfoTask : public Task {
}
ChildProcessInfo* info = *iter;
DictionaryValue* item = new DictionaryValue;
- item->SetString("name", WideToUTF16Hack(info->name()));
+ item->SetString("name", info->name());
item->SetString("type",
ChildProcessInfo::GetTypeNameInEnglish(info->type()));
item->SetInteger("pid", base::GetProcId(info->handle()));