diff options
Diffstat (limited to 'content/public/browser/web_contents_delegate.cc')
-rw-r--r-- | content/public/browser/web_contents_delegate.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/content/public/browser/web_contents_delegate.cc b/content/public/browser/web_contents_delegate.cc index 09488ff..e617e82 100644 --- a/content/public/browser/web_contents_delegate.cc +++ b/content/public/browser/web_contents_delegate.cc @@ -145,6 +145,14 @@ void WebContentsDelegate::WebIntentDispatch( delete intents_dispatcher; } +bool WebContentsDelegate::RequestPpapiBrokerPermission( + WebContents* web_contents, + const GURL& url, + const FilePath& plugin_path, + const base::Callback<void(bool)>& callback) { + return false; +} + WebContentsDelegate::~WebContentsDelegate() { while (!attached_contents_.empty()) { WebContents* web_contents = *attached_contents_.begin(); |