Chromium Code Reviews

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

Issue 217016: Fix so that the doubleclick privacy blacklist does not interfere with Gmail... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/renderer_host/resource_message_filter.cc
===================================================================
--- chrome/browser/renderer_host/resource_message_filter.cc (revision 26807)
+++ chrome/browser/renderer_host/resource_message_filter.cc (working copy)
@@ -460,10 +460,10 @@
context->cookie_store()->SetCookie(url, cookie);
}
delete match;
+ return;
}
- } else {
- context->cookie_store()->SetCookie(url, cookie);
}
+ context->cookie_store()->SetCookie(url, cookie);
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine