Home | History | Annotate | Download | only in web

Lines Matching refs:webFrame

37 class WebFrame;
45 virtual bool allowDatabase(WebFrame*, const WebString& name, const WebString& displayName, unsigned long estimatedSize) { return true; }
48 virtual bool allowFileSystem(WebFrame*) { return true; }
51 virtual bool allowImage(WebFrame* frame, bool enabledPerSettings, const WebURL& imageURL) { return enabledPerSettings; }
54 virtual bool allowIndexedDB(WebFrame*, const WebString& name, const WebSecurityOrigin&) { return true; }
57 virtual bool allowPlugins(WebFrame*, bool enabledPerSettings) { return enabledPerSettings; }
60 virtual bool allowScript(WebFrame*, bool enabledPerSettings) { return enabledPerSettings; }
63 virtual bool allowScriptFromSource(WebFrame*, bool enabledPerSettings, const WebURL& scriptURL) { return enabledPerSettings; }
66 virtual bool allowDisplayingInsecureContent(WebFrame*, bool enabledPerSettings, const WebSecurityOrigin&, const WebURL&) { return enabledPerSettings; }
69 virtual bool allowRunningInsecureContent(WebFrame*, bool enabledPerSettings, const WebSecurityOrigin&, const WebURL&) { return enabledPerSettings; }
74 // WebFrame::executeScriptInIsolatedWorld with that same extensionGroup
76 virtual bool allowScriptExtension(WebFrame*, const WebString& extensionName, int extensionGroup) { return true; }
78 virtual bool allowScriptExtension(WebFrame* webFrame, const WebString& extensionName, int extensionGroup, int worldId)
80 return allowScriptExtension(webFrame, extensionName, extensionGroup);
85 virtual bool allowStorage(WebFrame*, bool local) { return true; }
88 virtual bool allowReadFromClipboard(WebFrame*, bool defaultValue) { return defaultValue; }
91 virtual bool allowWriteToClipboard(WebFrame*, bool defaultValue) { return defaultValue; }
105 virtual void didNotAllowPlugins(WebFrame*) { }
108 virtual void didNotAllowScript(WebFrame*) { }