Index: Source/core/fetch/FetchRequest.h |
diff --git a/Source/core/fetch/FetchRequest.h b/Source/core/fetch/FetchRequest.h |
index e9aa6878445bc0c79bfc982dad274761acb0d375..57c2e13fcaf19ea176b8a03428a14c2fb476a518 100644 |
--- a/Source/core/fetch/FetchRequest.h |
+++ b/Source/core/fetch/FetchRequest.h |
@@ -59,6 +59,7 @@ public: |
DeferOption defer() const { return m_defer; } |
void setDefer(DeferOption defer) { m_defer = defer; } |
void setContentSecurityCheck(ContentSecurityPolicyCheck contentSecurityPolicyOption) { m_options.contentSecurityPolicyOption = contentSecurityPolicyOption; } |
+ void setCrossOriginAccessControl(SecurityOrigin*, StoredCredentials, CredentialRequest); |
void setCrossOriginAccessControl(SecurityOrigin*, StoredCredentials); |
abarth-chromium
2014/03/12 18:49:32
Can we remove this function and just supply a defa
Hajime Morrita
2014/03/12 18:56:11
We cannot. The default for the third parameter dep
|
void setCrossOriginAccessControl(SecurityOrigin*, const AtomicString& crossOriginMode); |
OriginRestriction originRestriction() const { return m_originRestriction; } |