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

Unified Diff: chrome/browser/renderer_host/safe_browsing_resource_handler.cc

Issue 385024: Propagate the "first party for cookies" from WebKit through the resource... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Upload before checkin Created 11 years, 1 month 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
Index: chrome/browser/renderer_host/safe_browsing_resource_handler.cc
===================================================================
--- chrome/browser/renderer_host/safe_browsing_resource_handler.cc (revision 31948)
+++ chrome/browser/renderer_host/safe_browsing_resource_handler.cc (working copy)
@@ -241,8 +241,10 @@
bool defer = false;
next_handler_->OnRequestRedirected(redirect_id_, redirect_url_,
redirect_response_, &defer);
- if (!defer)
- rdh_->FollowDeferredRedirect(render_process_host_id_, redirect_id_);
+ if (!defer) {
+ rdh_->FollowDeferredRedirect(render_process_host_id_, redirect_id_,
+ GURL());
+ }
redirect_response_ = NULL;
redirect_id_ = -1;

Powered by Google App Engine
This is Rietveld 408576698