diff options
author | creis@chromium.org <creis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-18 18:42:36 +0000 |
---|---|---|
committer | creis@chromium.org <creis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-18 18:42:36 +0000 |
commit | f820d9c51d794d1ae09040be5d74c3139a14caf0 (patch) | |
tree | f51c04e250056a25663e7a466c6db02d571258ba /content/browser/loader/resource_dispatcher_host_impl.h | |
parent | dffea4c0355c7237d72c61d8dff28199734573fb (diff) | |
download | chromium_src-f820d9c51d794d1ae09040be5d74c3139a14caf0.zip chromium_src-f820d9c51d794d1ae09040be5d74c3139a14caf0.tar.gz chromium_src-f820d9c51d794d1ae09040be5d74c3139a14caf0.tar.bz2 |
Remove unnecessary call to set_first_party_for_cookies.
Appears to no longer be needed after the changes to navigation transfers,
now that the transfer happens at commit and the resource handler is
preserved.
BUG=262860
TEST=ResourceDispatcherHostBrowserTest.CookiePolicy still passes.
R=jochen@chromium.org
Review URL: https://codereview.chromium.org/117623003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@241606 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/loader/resource_dispatcher_host_impl.h')
-rw-r--r-- | content/browser/loader/resource_dispatcher_host_impl.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/content/browser/loader/resource_dispatcher_host_impl.h b/content/browser/loader/resource_dispatcher_host_impl.h index b6922e5..c3c95fe 100644 --- a/content/browser/loader/resource_dispatcher_host_impl.h +++ b/content/browser/loader/resource_dispatcher_host_impl.h @@ -131,8 +131,7 @@ class CONTENT_EXPORT ResourceDispatcherHostImpl // Marks the request as "parked". This happens if a request is // redirected cross-site and needs to be resumed by a new render view. - void MarkAsTransferredNavigation(const GlobalRequestID& id, - const GURL& target_url); + void MarkAsTransferredNavigation(const GlobalRequestID& id); // Resumes the request without transferring it to a new render view. void ResumeDeferredNavigation(const GlobalRequestID& id); |