| Index: webkit/glue/chrome_client_impl.cc
|
| ===================================================================
|
| --- webkit/glue/chrome_client_impl.cc (revision 5111)
|
| +++ webkit/glue/chrome_client_impl.cc (working copy)
|
| @@ -468,3 +468,15 @@
|
| if (d)
|
| d->SetCursor(webview_, cursor);
|
| }
|
| +
|
| +void ChromeClientImpl::enableSuddenTermination() {
|
| + WebViewDelegate* d = webview_->delegate();
|
| + if (d)
|
| + d->EnableSuddenTermination();
|
| +}
|
| +
|
| +void ChromeClientImpl::disableSuddenTermination() {
|
| + WebViewDelegate* d = webview_->delegate();
|
| + if (d)
|
| + d->DisableSuddenTermination();
|
| +}
|
|
|