Prevent creating popup window from inside WebContents

This commit is contained in:
Cheng Zhao 2014-10-27 16:56:28 +08:00
parent cf4c2d02f3
commit fb864a8f23
3 changed files with 32 additions and 0 deletions

View file

@ -214,6 +214,14 @@ class NativeWindow : public brightray::DefaultWebContentsDelegate,
const std::vector<DraggableRegion>& regions) = 0;
// Implementations of content::WebContentsDelegate.
bool ShouldCreateWebContents(
content::WebContents* web_contents,
int route_id,
WindowContainerType window_container_type,
const base::string16& frame_name,
const GURL& target_url,
const std::string& partition_id,
content::SessionStorageNamespace* session_storage_namespace) override;
content::WebContents* OpenURLFromTab(
content::WebContents* source,
const content::OpenURLParams& params) override;