| Index: chrome/browser/dom_ui/dom_ui.cc
|
| ===================================================================
|
| --- chrome/browser/dom_ui/dom_ui.cc (revision 10828)
|
| +++ chrome/browser/dom_ui/dom_ui.cc (working copy)
|
| @@ -111,7 +111,7 @@
|
| std::wstring title,
|
| const GURL& gurl) {
|
| std::wstring wstring_url = UTF8ToWide(gurl.spec());
|
| - dictionary->SetString(L"url", wstring_url);
|
| + dictionary->SetString(ASCIIToUTF16("url"), WideToUTF16Hack(wstring_url));
|
|
|
| bool using_url_as_the_title = false;
|
| if (title.empty()) {
|
| @@ -133,7 +133,7 @@
|
| DCHECK(success ? (title != title_to_set) : (title == title_to_set));
|
| }
|
| }
|
| - dictionary->SetString(L"title", title_to_set);
|
| + dictionary->SetString(ASCIIToUTF16("title"), WideToUTF16Hack(title_to_set));
|
| }
|
|
|
| bool DOMMessageHandler::ExtractIntegerValue(const Value* value, int* out_int) {
|
|
|