Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2276)

Unified Diff: Source/platform/network/ResourceRequest.h

Issue 189903002: Rename allowCookies to allowStoredCredentials (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/platform/exported/WebURLRequestPrivate.h ('k') | Source/platform/network/ResourceRequest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « Source/platform/exported/WebURLRequestPrivate.h ('k') | Source/platform/network/ResourceRequest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698