Home
last modified time | relevance | path

Searched refs:enabled_per_settings (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/content/shell/renderer/test_runner/
Dweb_permissions.cc20 bool WebPermissions::allowImage(bool enabled_per_settings, in allowImage() argument
22 bool allowed = enabled_per_settings && images_allowed_; in allowImage()
40 bool WebPermissions::allowScriptFromSource(bool enabled_per_settings, in allowScriptFromSource() argument
42 bool allowed = enabled_per_settings && scripts_allowed_; in allowScriptFromSource()
56 bool WebPermissions::allowPlugins(bool enabled_per_settings) { in allowPlugins() argument
57 return enabled_per_settings && plugins_allowed_; in allowPlugins()
61 bool enabled_per_settings, in allowDisplayingInsecureContent() argument
64 return enabled_per_settings || displaying_insecure_content_allowed_; in allowDisplayingInsecureContent()
68 bool enabled_per_settings, in allowRunningInsecureContent() argument
71 return enabled_per_settings || running_insecure_content_allowed_; in allowRunningInsecureContent()
/external/chromium_org/android_webview/renderer/
Daw_permission_client.cc36 bool enabled_per_settings, in allowDisplayingInsecureContent() argument
39 return enabled_per_settings ? true : AllowMixedContent(url); in allowDisplayingInsecureContent()
43 bool enabled_per_settings, in allowRunningInsecureContent() argument
46 return enabled_per_settings ? true : AllowMixedContent(url); in allowRunningInsecureContent()
Daw_permission_client.h24 bool enabled_per_settings,
28 bool enabled_per_settings,
/external/chromium_org/chrome/renderer/
Dcontent_settings_observer.h57 virtual bool allowImage(bool enabled_per_settings,
61 virtual bool allowPlugins(bool enabled_per_settings) OVERRIDE;
62 virtual bool allowScript(bool enabled_per_settings) OVERRIDE;
63 virtual bool allowScriptFromSource(bool enabled_per_settings,
Dcontent_settings_observer.cc295 bool ContentSettingsObserver::allowImage(bool enabled_per_settings, in allowImage() argument
297 bool allow = enabled_per_settings; in allowImage()
298 if (enabled_per_settings) { in allowImage()
333 bool ContentSettingsObserver::allowPlugins(bool enabled_per_settings) { in allowPlugins() argument
334 return enabled_per_settings; in allowPlugins()
337 bool ContentSettingsObserver::allowScript(bool enabled_per_settings) { in allowScript() argument
338 if (!enabled_per_settings) in allowScript()
367 bool enabled_per_settings, in allowScriptFromSource() argument
369 if (!enabled_per_settings) in allowScriptFromSource()