| Index: webkit/glue/chrome_client_impl.cc
|
| ===================================================================
|
| --- webkit/glue/chrome_client_impl.cc (revision 27750)
|
| +++ webkit/glue/chrome_client_impl.cc (working copy)
|
| @@ -348,7 +348,7 @@
|
| webview_->page()->setGroupName(WebCore::String());
|
|
|
| // Make sure that all loading is stopped. Ensures that JS stops executing!
|
| - webview_->StopLoading();
|
| + webview_->mainFrame()->stopLoading();
|
|
|
| if (webview_->client())
|
| webview_->client()->closeWidgetSoon();
|
| @@ -413,7 +413,7 @@
|
| }
|
|
|
| bool ChromeClientImpl::tabsToLinks() const {
|
| - return webview_->GetTabsToLinks();
|
| + return webview_->tabsToLinks();
|
| }
|
|
|
| WebCore::IntRect ChromeClientImpl::windowResizerRect() const {
|
|
|