diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-30 17:43:17 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-30 17:43:17 +0000 |
commit | f77d8762d987502bc4df7d861ae20943edf076cd (patch) | |
tree | e9e5b8c5f08d4d5af786bb9c8edabfdef7fd6a2d /chrome/browser/plugin_process_host.h | |
parent | b488ea7872d49c212507c7b4827a74aa5501fbc6 (diff) | |
download | chromium_src-f77d8762d987502bc4df7d861ae20943edf076cd.zip chromium_src-f77d8762d987502bc4df7d861ae20943edf076cd.tar.gz chromium_src-f77d8762d987502bc4df7d861ae20943edf076cd.tar.bz2 |
Use a plain ASCII string for the UI locale in the plugin service.
Removes a few needless conversions.
Review URL: http://codereview.chromium.org/3075012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54339 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/plugin_process_host.h')
-rw-r--r-- | chrome/browser/plugin_process_host.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/plugin_process_host.h b/chrome/browser/plugin_process_host.h index b8a1d71..5254752 100644 --- a/chrome/browser/plugin_process_host.h +++ b/chrome/browser/plugin_process_host.h @@ -46,7 +46,7 @@ class PluginProcessHost : public BrowserChildProcessHost, // Initialize the new plugin process, returning true on success. This must // be called before the object can be used. - bool Init(const WebPluginInfo& info, const std::wstring& locale); + bool Init(const WebPluginInfo& info, const std::string& locale); // Force the plugin process to shutdown (cleanly). void ForceShutdown(); |