| Index: webkit/tools/test_shell/test_webview_delegate.cc
|
| diff --git a/webkit/tools/test_shell/test_webview_delegate.cc b/webkit/tools/test_shell/test_webview_delegate.cc
|
| index fccf8e7d78f0bd03f2cd05c8a382449081aef1be..305fa1fad830ec42df32423690f66fd946807cfc 100644
|
| --- a/webkit/tools/test_shell/test_webview_delegate.cc
|
| +++ b/webkit/tools/test_shell/test_webview_delegate.cc
|
| @@ -329,10 +329,19 @@ void TestWebViewDelegate::SetAuthorAndUserStylesEnabled(bool is_enabled) {
|
| }
|
|
|
| // WebViewClient -------------------------------------------------------------
|
| +// TODO(jochen): remove once webkit side is up to date.
|
| WebView* TestWebViewDelegate::createView(
|
| WebFrame* creator,
|
| const WebWindowFeatures& window_features,
|
| const WebString& frame_name) {
|
| + return createView(creator, WebURLRequest(), window_features, frame_name);
|
| +}
|
| +
|
| +WebView* TestWebViewDelegate::createView(
|
| + WebFrame* creator,
|
| + const WebURLRequest& request,
|
| + const WebWindowFeatures& window_features,
|
| + const WebString& frame_name) {
|
| return shell_->CreateWebView();
|
| }
|
|
|
|
|