Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1261)

Unified Diff: chrome/browser/debugger/debugger_remote_service.cc

Issue 6312154: Remove wstring from RVH's run Javascript command.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/debugger/debugger_remote_service.cc
===================================================================
--- chrome/browser/debugger/debugger_remote_service.cc (revision 73855)
+++ chrome/browser/debugger/debugger_remote_service.cc (working copy)
@@ -330,7 +330,7 @@
}
std::string javascript;
content->GetString(kDataKey, &javascript);
- render_view_host->ExecuteJavascriptInWebFrame(std::wstring(),
- UTF8ToWide(javascript));
+ render_view_host->ExecuteJavascriptInWebFrame(string16(),
+ UTF8ToUTF16(javascript));
return false;
}

Powered by Google App Engine
This is Rietveld 408576698