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

Side by Side Diff: third_party/WebKit/Source/platform/network/ResourceRequest.cpp

Issue 1844053003: CREDENTIAL: Rework the integration with Fetch (1/2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clear attachedcredentials Created 4 years, 8 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2003, 2006 Apple Computer, Inc. All rights reserved. 2 * Copyright (C) 2003, 2006 Apple Computer, Inc. All rights reserved.
3 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. 3 * Copyright (C) 2009, 2012 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 setCachePolicy(data->m_cachePolicy); 44 setCachePolicy(data->m_cachePolicy);
45 setTimeoutInterval(data->m_timeoutInterval); 45 setTimeoutInterval(data->m_timeoutInterval);
46 setFirstPartyForCookies(data->m_firstPartyForCookies); 46 setFirstPartyForCookies(data->m_firstPartyForCookies);
47 setRequestorOrigin(data->m_requestorOrigin); 47 setRequestorOrigin(data->m_requestorOrigin);
48 setHTTPMethod(AtomicString(data->m_httpMethod)); 48 setHTTPMethod(AtomicString(data->m_httpMethod));
49 setPriority(data->m_priority, data->m_intraPriorityValue); 49 setPriority(data->m_priority, data->m_intraPriorityValue);
50 50
51 m_httpHeaderFields.adopt(data->m_httpHeaders.release()); 51 m_httpHeaderFields.adopt(data->m_httpHeaders.release());
52 52
53 setHTTPBody(data->m_httpBody); 53 setHTTPBody(data->m_httpBody);
54 setAttachedCredential(data->m_attachedCredential);
54 setAllowStoredCredentials(data->m_allowStoredCredentials); 55 setAllowStoredCredentials(data->m_allowStoredCredentials);
55 setReportUploadProgress(data->m_reportUploadProgress); 56 setReportUploadProgress(data->m_reportUploadProgress);
56 setHasUserGesture(data->m_hasUserGesture); 57 setHasUserGesture(data->m_hasUserGesture);
57 setDownloadToFile(data->m_downloadToFile); 58 setDownloadToFile(data->m_downloadToFile);
58 setUseStreamOnResponse(data->m_useStreamOnResponse); 59 setUseStreamOnResponse(data->m_useStreamOnResponse);
59 setSkipServiceWorker(data->m_skipServiceWorker); 60 setSkipServiceWorker(data->m_skipServiceWorker);
60 setShouldResetAppCache(data->m_shouldResetAppCache); 61 setShouldResetAppCache(data->m_shouldResetAppCache);
61 setRequestorID(data->m_requestorID); 62 setRequestorID(data->m_requestorID);
62 setRequestorProcessID(data->m_requestorProcessID); 63 setRequestorProcessID(data->m_requestorProcessID);
63 setAppCacheHostID(data->m_appCacheHostID); 64 setAppCacheHostID(data->m_appCacheHostID);
(...skipping 20 matching lines...) Expand all
84 data->m_timeoutInterval = timeoutInterval(); 85 data->m_timeoutInterval = timeoutInterval();
85 data->m_firstPartyForCookies = firstPartyForCookies().copy(); 86 data->m_firstPartyForCookies = firstPartyForCookies().copy();
86 data->m_requestorOrigin = requestorOrigin() ? requestorOrigin()->isolatedCop y() : nullptr; 87 data->m_requestorOrigin = requestorOrigin() ? requestorOrigin()->isolatedCop y() : nullptr;
87 data->m_httpMethod = httpMethod().getString().isolatedCopy(); 88 data->m_httpMethod = httpMethod().getString().isolatedCopy();
88 data->m_httpHeaders = httpHeaderFields().copyData(); 89 data->m_httpHeaders = httpHeaderFields().copyData();
89 data->m_priority = priority(); 90 data->m_priority = priority();
90 data->m_intraPriorityValue = m_intraPriorityValue; 91 data->m_intraPriorityValue = m_intraPriorityValue;
91 92
92 if (m_httpBody) 93 if (m_httpBody)
93 data->m_httpBody = m_httpBody->deepCopy(); 94 data->m_httpBody = m_httpBody->deepCopy();
95 if (m_attachedCredential)
96 data->m_attachedCredential = m_attachedCredential->deepCopy();
94 data->m_allowStoredCredentials = m_allowStoredCredentials; 97 data->m_allowStoredCredentials = m_allowStoredCredentials;
95 data->m_reportUploadProgress = m_reportUploadProgress; 98 data->m_reportUploadProgress = m_reportUploadProgress;
96 data->m_hasUserGesture = m_hasUserGesture; 99 data->m_hasUserGesture = m_hasUserGesture;
97 data->m_downloadToFile = m_downloadToFile; 100 data->m_downloadToFile = m_downloadToFile;
98 data->m_useStreamOnResponse = m_useStreamOnResponse; 101 data->m_useStreamOnResponse = m_useStreamOnResponse;
99 data->m_skipServiceWorker = m_skipServiceWorker; 102 data->m_skipServiceWorker = m_skipServiceWorker;
100 data->m_shouldResetAppCache = m_shouldResetAppCache; 103 data->m_shouldResetAppCache = m_shouldResetAppCache;
101 data->m_requestorID = m_requestorID; 104 data->m_requestorID = m_requestorID;
102 data->m_requestorProcessID = m_requestorProcessID; 105 data->m_requestorProcessID = m_requestorProcessID;
103 data->m_appCacheHostID = m_appCacheHostID; 106 data->m_appCacheHostID = m_appCacheHostID;
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 EncodedFormData* ResourceRequest::httpBody() const 279 EncodedFormData* ResourceRequest::httpBody() const
277 { 280 {
278 return m_httpBody.get(); 281 return m_httpBody.get();
279 } 282 }
280 283
281 void ResourceRequest::setHTTPBody(PassRefPtr<EncodedFormData> httpBody) 284 void ResourceRequest::setHTTPBody(PassRefPtr<EncodedFormData> httpBody)
282 { 285 {
283 m_httpBody = httpBody; 286 m_httpBody = httpBody;
284 } 287 }
285 288
289 EncodedFormData* ResourceRequest::attachedCredential() const
290 {
291 return m_attachedCredential.get();
292 }
293
294 void ResourceRequest::setAttachedCredential(PassRefPtr<EncodedFormData> attached Credential)
295 {
296 m_attachedCredential = attachedCredential;
297 }
298
286 bool ResourceRequest::allowStoredCredentials() const 299 bool ResourceRequest::allowStoredCredentials() const
287 { 300 {
288 return m_allowStoredCredentials; 301 return m_allowStoredCredentials;
289 } 302 }
290 303
291 void ResourceRequest::setAllowStoredCredentials(bool allowCredentials) 304 void ResourceRequest::setAllowStoredCredentials(bool allowCredentials)
292 { 305 {
293 m_allowStoredCredentials = allowCredentials; 306 m_allowStoredCredentials = allowCredentials;
294 } 307 }
295 308
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 m_didSetHTTPReferrer = false; 423 m_didSetHTTPReferrer = false;
411 m_checkForBrowserSideNavigation = true; 424 m_checkForBrowserSideNavigation = true;
412 m_uiStartTime = 0; 425 m_uiStartTime = 0;
413 m_isExternalRequest = false; 426 m_isExternalRequest = false;
414 m_inputPerfMetricReportPolicy = InputToLoadPerfMetricReportPolicy::NoReport; 427 m_inputPerfMetricReportPolicy = InputToLoadPerfMetricReportPolicy::NoReport;
415 m_followedRedirect = false; 428 m_followedRedirect = false;
416 m_requestorOrigin = SecurityOrigin::createUnique(); 429 m_requestorOrigin = SecurityOrigin::createUnique();
417 } 430 }
418 431
419 } // namespace blink 432 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/network/ResourceRequest.h ('k') | third_party/WebKit/public/platform/WebURLRequest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698