Home | History | Annotate | Download | only in Api

Lines Matching refs:scheme

43 void QWEBKIT_EXPORT qt_drt_setDomainRelaxationForbiddenForURLScheme(bool forbidden, const QString& scheme)
45 SecurityOrigin::setDomainRelaxationForbiddenForURLScheme(forbidden, scheme);
56 An origin consists of a host name, a scheme, and a port number. Web sites
67 web page, and use host(), scheme() and port() to identify the security origin.
97 Returns the scheme defining the security origin.
99 QString QWebSecurityOrigin::scheme() const
221 Adds the given \a scheme to the list of schemes that are considered equivalent
222 to the \c file: scheme. They are not subject to cross domain restrictions.
224 void QWebSecurityOrigin::addLocalScheme(const QString& scheme)
226 SecurityOrigin::registerURLSchemeAsLocal(scheme);
232 Removes the given \a scheme from the list of local schemes.
236 void QWebSecurityOrigin::removeLocalScheme(const QString& scheme)
238 SecurityOrigin::removeURLSchemeRegisteredAsLocal(scheme);
252 const QString scheme = *i;
253 list.append(scheme);