HomeSort by relevance Sort by last modified time
    Searched refs:errorDescription (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/loader/
CrossOriginPreflightResultCache.h 51 bool parse(const ResourceResponse&, String& errorDescription);
52 bool allowsCrossOriginMethod(const String&, String& errorDescription) const;
53 bool allowsCrossOriginHeaders(const HTTPHeaderMap&, String& errorDescription) const;
CrossOriginAccessControl.h 56 bool passesAccessControlCheck(const ResourceResponse&, StoredCredentials, SecurityOrigin*, String& errorDescription);
57 bool passesPreflightStatusCheck(const ResourceResponse&, String& errorDescription);
CrossOriginPreflightResultCache.cpp 90 bool CrossOriginPreflightResultCacheItem::parse(const ResourceResponse& response, String& errorDescription)
94 errorDescription = "Cannot parse Access-Control-Allow-Methods response header field.";
100 errorDescription = "Cannot parse Access-Control-Allow-Headers response header field.";
115 bool CrossOriginPreflightResultCacheItem::allowsCrossOriginMethod(const String& method, String& errorDescription) const
120 errorDescription = "Method " + method + " is not allowed by Access-Control-Allow-Methods.";
124 bool CrossOriginPreflightResultCacheItem::allowsCrossOriginHeaders(const HTTPHeaderMap& requestHeaders, String& errorDescription) const
129 errorDescription = "Request header field " + it->key.string() + " is not allowed by Access-Control-Allow-Headers.";
CrossOriginAccessControl.cpp 138 bool passesAccessControlCheck(const ResourceResponse& response, StoredCredentials includeCredentials, SecurityOrigin* securityOrigin, String& errorDescription)
152 errorDescription = "Cannot use wildcard in Access-Control-Allow-Origin when credentials flag is true.";
154 errorDescription = "Origin " + securityOrigin->toString() + " is not allowed by Access-Control-Allow-Origin.";
161 errorDescription = "Credentials flag is true, but Access-Control-Allow-Credentials is not \"true\".";
169 bool passesPreflightStatusCheck(const ResourceResponse& response, String& errorDescription)
172 errorDescription = "Invalid HTTP status code " + String::number(response.httpStatusCode());
DocumentThreadableLoader.h 98 void preflightFailure(unsigned long identifier, const String& url, const String& errorDescription);
DocumentThreadableLoader.cpp 391 void DocumentThreadableLoader::preflightFailure(unsigned long identifier, const String& url, const String& errorDescription)
393 ResourceError error(errorDomainWebKitInternal, 0, url, errorDescription);
  /external/skia/tests/
PathCoverageTest.cpp 139 SkString errorDescription;
140 errorDescription.printf(
146 reporter->reportFailed(errorDescription);
  /external/chromium_org/third_party/WebKit/Source/core/loader/cache/
Resource.h 169 bool passesAccessControlCheck(SecurityOrigin*, String& errorDescription);
Resource.cpp 254 bool Resource::passesAccessControlCheck(SecurityOrigin* securityOrigin, String& errorDescription)
256 return WebCore::passesAccessControlCheck(m_response, resourceRequest().allowCookies() ? AllowStoredCredentials : DoNotAllowStoredCredentials, securityOrigin, errorDescription);

Completed in 132 milliseconds