Index: Source/platform/network/ResourceRequest.h |
diff --git a/Source/platform/network/ResourceRequest.h b/Source/platform/network/ResourceRequest.h |
index 63ae6a786cb3cb09631512b1af6638fcff2948cb..710ace1227c9656dfe450b25943fc944d66e3121 100644 |
--- a/Source/platform/network/ResourceRequest.h |
+++ b/Source/platform/network/ResourceRequest.h |
@@ -157,8 +157,8 @@ public: |
FormData* httpBody() const; |
void setHTTPBody(PassRefPtr<FormData> httpBody); |
- bool allowCookies() const; |
- void setAllowCookies(bool allowCookies); |
+ bool allowStoredCredentials() const; |
+ void setAllowStoredCredentials(bool allowCredentials); |
ResourceLoadPriority priority() const; |
void setPriority(ResourceLoadPriority); |
@@ -224,7 +224,7 @@ private: |
AtomicString m_httpMethod; |
HTTPHeaderMap m_httpHeaderFields; |
RefPtr<FormData> m_httpBody; |
- bool m_allowCookies : 1; |
+ bool m_allowStoredCredentials : 1; |
bool m_reportUploadProgress : 1; |
bool m_reportLoadTiming : 1; |
bool m_reportRawHeaders : 1; |
@@ -259,7 +259,7 @@ public: |
String m_httpMethod; |
OwnPtr<CrossThreadHTTPHeaderMapData> m_httpHeaders; |
RefPtr<FormData> m_httpBody; |
- bool m_allowCookies; |
+ bool m_allowStoredCredentials; |
bool m_reportUploadProgress; |
bool m_hasUserGesture; |
bool m_downloadToFile; |