diff options
Diffstat (limited to 'content/browser/web_contents/web_contents_impl.cc')
-rw-r--r-- | content/browser/web_contents/web_contents_impl.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc index a1e986b9..193e130 100644 --- a/content/browser/web_contents/web_contents_impl.cc +++ b/content/browser/web_contents/web_contents_impl.cc @@ -2342,6 +2342,12 @@ void WebContentsImpl::OnBrowserPluginCreateGuest( params); } +void WebContentsImpl::DidBlock3DAPIs(const GURL& url, + ThreeDAPIType requester) { + FOR_EACH_OBSERVER(WebContentsObserver, observers_, + DidBlock3DAPIs(url, requester)); +} + // Notifies the RenderWidgetHost instance about the fact that the page is // loading, or done loading and calls the base implementation. void WebContentsImpl::SetIsLoading(bool is_loading, |