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

Unified Diff: content/browser/plugin_process_host.cc

Issue 7583016: wstring: remove wstrings from ChildProcessInfo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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
« no previous file with comments | « chrome/service/service_utility_process_host.cc ('k') | content/browser/ppapi_broker_process_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/plugin_process_host.cc
diff --git a/content/browser/plugin_process_host.cc b/content/browser/plugin_process_host.cc
index 56fc90e71761da31afa68415502541ad983d86f6..863133f835dcde1a88ba91cc8355c0c0ff9cc50b 100644
--- a/content/browser/plugin_process_host.cc
+++ b/content/browser/plugin_process_host.cc
@@ -155,8 +155,8 @@ PluginProcessHost::~PluginProcessHost() {
bool PluginProcessHost::Init(const webkit::npapi::WebPluginInfo& info,
const std::string& locale) {
info_ = info;
- set_name(UTF16ToWideHack(info_.name));
- set_version(UTF16ToWideHack(info_.version));
+ set_name(info_.name);
+ set_version(info_.version);
if (!CreateChannel())
return false;
« no previous file with comments | « chrome/service/service_utility_process_host.cc ('k') | content/browser/ppapi_broker_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698