diff options
Diffstat (limited to 'chrome/plugin/webplugin_delegate_stub.cc')
-rw-r--r-- | chrome/plugin/webplugin_delegate_stub.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/plugin/webplugin_delegate_stub.cc b/chrome/plugin/webplugin_delegate_stub.cc index 9bc8561..00c42fe 100644 --- a/chrome/plugin/webplugin_delegate_stub.cc +++ b/chrome/plugin/webplugin_delegate_stub.cc @@ -165,9 +165,9 @@ void WebPluginDelegateStub::OnInit(const PluginMsg_Init_Params& params, } const CommandLine& command_line = *CommandLine::ForCurrentProcess(); - FilePath path = FilePath::FromWStringHack( - command_line.GetSwitchValue(switches::kPluginPath)); - + FilePath path = + command_line.GetSwitchValuePath(switches::kPluginPath) +; gfx::PluginWindowHandle parent = gfx::kNullPluginWindow; #if defined(OS_WIN) |