| 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 19dea286a27a7ee239514eec80caef2e3cbdbce6..9aa3c26d15273cf32b05a642b8502cd814f7b0f3 100644
|
| --- a/webkit/tools/test_shell/test_webview_delegate.cc
|
| +++ b/webkit/tools/test_shell/test_webview_delegate.cc
|
| @@ -316,13 +316,20 @@ void TestWebViewDelegate::SetAuthorAndUserStylesEnabled(bool is_enabled) {
|
| }
|
|
|
| // WebViewClient -------------------------------------------------------------
|
| -
|
| +// TODO(atwilson): Remove this API when we push related changes upstream
|
| WebView* TestWebViewDelegate::createView(
|
| WebFrame* creator,
|
| const WebWindowFeatures& window_features) {
|
| return shell_->CreateWebView();
|
| }
|
|
|
| +WebView* TestWebViewDelegate::createView(
|
| + WebFrame* creator,
|
| + const WebWindowFeatures& window_features,
|
| + const WebString& frame_name) {
|
| + return shell_->CreateWebView();
|
| +}
|
| +
|
| WebWidget* TestWebViewDelegate::createPopupMenu(WebPopupType popup_type) {
|
| // TODO(darin): Should we take into account |popup_type| (for activation
|
| // purpose)?
|
|
|