diff options
Diffstat (limited to 'webkit/tools/test_shell')
-rwxr-xr-x | webkit/tools/test_shell/test_webview_delegate.cc | 3 | ||||
-rw-r--r-- | webkit/tools/test_shell/test_webview_delegate.h | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/webkit/tools/test_shell/test_webview_delegate.cc b/webkit/tools/test_shell/test_webview_delegate.cc index 4bf5601..93d498c 100755 --- a/webkit/tools/test_shell/test_webview_delegate.cc +++ b/webkit/tools/test_shell/test_webview_delegate.cc @@ -105,7 +105,8 @@ const char* WebNavigationTypeToString(WebNavigationType type) { // WebViewDelegate ----------------------------------------------------------- WebView* TestWebViewDelegate::CreateWebView(WebView* webview, - bool user_gesture) { + bool user_gesture, + const GURL& creator_url) { return shell_->CreateWebView(webview); } diff --git a/webkit/tools/test_shell/test_webview_delegate.h b/webkit/tools/test_shell/test_webview_delegate.h index 79fd25d..0c5ef3b 100644 --- a/webkit/tools/test_shell/test_webview_delegate.h +++ b/webkit/tools/test_shell/test_webview_delegate.h @@ -77,7 +77,9 @@ class TestWebViewDelegate : public base::RefCounted<TestWebViewDelegate>, virtual ~TestWebViewDelegate(); // WebViewDelegate - virtual WebView* CreateWebView(WebView* webview, bool user_gesture); + virtual WebView* CreateWebView(WebView* webview, + bool user_gesture, + const GURL& creator_url); virtual WebWidget* CreatePopupWidget(WebView* webview, bool activatable); virtual WebPluginDelegate* CreatePluginDelegate( WebView* webview, |