summaryrefslogtreecommitdiffstats
path: root/webkit/tools/test_shell
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/tools/test_shell')
-rw-r--r--webkit/tools/test_shell/test_webview_delegate_win.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/tools/test_shell/test_webview_delegate_win.cc b/webkit/tools/test_shell/test_webview_delegate_win.cc
index 30431f6..6e1b27e 100644
--- a/webkit/tools/test_shell/test_webview_delegate_win.cc
+++ b/webkit/tools/test_shell/test_webview_delegate_win.cc
@@ -57,9 +57,9 @@ WebPluginDelegate* TestWebViewDelegate::CreatePluginDelegate(
return NULL;
if (actual_mime_type && !actual_mime_type->empty())
- return WebPluginDelegateImpl::Create(info.file, *actual_mime_type, hwnd);
+ return WebPluginDelegateImpl::Create(info.path, *actual_mime_type, hwnd);
else
- return WebPluginDelegateImpl::Create(info.file, mime_type, hwnd);
+ return WebPluginDelegateImpl::Create(info.path, mime_type, hwnd);
}
void TestWebViewDelegate::ShowJavaScriptAlert(const std::wstring& message) {