summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
Diffstat (limited to 'chrome')
-rw-r--r--chrome/browser/dom_ui/html_dialog_contents.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/dom_ui/html_dialog_contents.cc b/chrome/browser/dom_ui/html_dialog_contents.cc
index 50dbc0c..0b4a7a9 100644
--- a/chrome/browser/dom_ui/html_dialog_contents.cc
+++ b/chrome/browser/dom_ui/html_dialog_contents.cc
@@ -60,14 +60,14 @@ std::string GetJsonResponse(const Value* content) {
return "";
}
- std::wstring result;
+ std::string result;
Value* value = NULL;
if (!args->Get(0, &value) || !value->GetAsString(&result)) {
NOTREACHED();
return "";
}
- return WideToASCII(result);
+ return result;
}
void HtmlDialogContents::OnDialogClosed(const Value* content) {