summaryrefslogtreecommitdiffstats
path: root/chrome/test/automation/automation_proxy.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/test/automation/automation_proxy.cc')
-rw-r--r--chrome/test/automation/automation_proxy.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/test/automation/automation_proxy.cc b/chrome/test/automation/automation_proxy.cc
index c828e06..e54f6a6 100644
--- a/chrome/test/automation/automation_proxy.cc
+++ b/chrome/test/automation/automation_proxy.cc
@@ -112,9 +112,9 @@ void AutomationProxy::InitializeChannelID() {
// wasn't getting freed up in time for the next test.)
static int channel_counter = 0;
- std::wostringstream buf;
- buf << L"ChromeTestingInterface:" << base::GetCurrentProcId() <<
- L"." << ++channel_counter;
+ std::ostringstream buf;
+ buf << "ChromeTestingInterface:" << base::GetCurrentProcId() <<
+ "." << ++channel_counter;
channel_id_ = buf.str();
}