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.cc | |
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.cc')
-rw-r--r-- | content/browser/loader/resource_dispatcher_host_impl.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/browser/loader/resource_dispatcher_host_impl.cc b/content/browser/loader/resource_dispatcher_host_impl.cc index 8b998bd..d6c70bf 100644 --- a/content/browser/loader/resource_dispatcher_host_impl.cc +++ b/content/browser/loader/resource_dispatcher_host_impl.cc @@ -1351,8 +1351,8 @@ void ResourceDispatcherHostImpl::BeginSaveFile( } void ResourceDispatcherHostImpl::MarkAsTransferredNavigation( - const GlobalRequestID& id, const GURL& target_url) { - GetLoader(id)->MarkAsTransferring(target_url); + const GlobalRequestID& id) { + GetLoader(id)->MarkAsTransferring(); } void ResourceDispatcherHostImpl::ResumeDeferredNavigation( |