diff options
Diffstat (limited to 'content/public/browser/web_contents_delegate.cc')
-rw-r--r-- | content/public/browser/web_contents_delegate.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/content/public/browser/web_contents_delegate.cc b/content/public/browser/web_contents_delegate.cc index 34732db..944752c 100644 --- a/content/public/browser/web_contents_delegate.cc +++ b/content/public/browser/web_contents_delegate.cc @@ -135,6 +135,12 @@ bool WebContentsDelegate::ShouldCreateWebContents( return true; } +#if defined(OS_ANDROID) +bool WebContentsDelegate::ShouldOverrideLoading(const GURL& url) { + return false; +} +#endif + JavaScriptDialogCreator* WebContentsDelegate::GetJavaScriptDialogCreator() { return NULL; } |