Index: webkit/tools/test_shell/test_shell.cc |
diff --git a/webkit/tools/test_shell/test_shell.cc b/webkit/tools/test_shell/test_shell.cc |
index 559ab3f02bb69c71ca867035d1a4d745e64331b4..b6d1c8beb07848421eb9b77ceb4a7489a70f20c0 100644 |
--- a/webkit/tools/test_shell/test_shell.cc |
+++ b/webkit/tools/test_shell/test_shell.cc |
@@ -124,10 +124,10 @@ TestShell::~TestShell() { |
if (table != NULL) { |
int counter_max = table->GetMaxCounters(); |
for (int index=0; index < counter_max; index++) { |
- std::wstring name(table->GetRowName(index)); |
+ std::string name(table->GetRowName(index)); |
if (name.length() > 0) { |
int value = table->GetRowValue(index); |
- printf("%s:\t%d\n", WideToUTF8(name).c_str(), value); |
+ printf("%s:\t%d\n", name.c_str(), value); |
} |
} |
} |