Home | History | Annotate | Download | only in loader

Lines Matching refs:allowed

68     bool allowed = client()->allowDisplayingInsecureContent(settings && settings->allowDisplayOfInsecureContent(), securityOrigin, url);
69 logWarning(allowed, url, type);
71 if (allowed)
74 return allowed;
84 bool allowed = client()->allowRunningInsecureContent(allowedPerSettings, securityOrigin, url);
85 logWarning(allowed, url, type);
87 if (allowed)
90 return allowed;
104 void MixedContentChecker::logWarning(bool allowed, const KURL& target, const MixedContentType type) const
107 message.append((allowed ? "" : "[blocked] "));
121 MessageLevel messageLevel = allowed ? WarningMessageLevel : ErrorMessageLevel;