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

Unified Diff: chrome/browser/automation/url_request_automation_job.cc

Issue 517070: Revert 35769 - Deleting cookies by setting the expires (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/automation/url_request_automation_job.cc
===================================================================
--- chrome/browser/automation/url_request_automation_job.cc (revision 35770)
+++ chrome/browser/automation/url_request_automation_job.cc (working copy)
@@ -12,7 +12,6 @@
#include "chrome/browser/renderer_host/resource_dispatcher_host.h"
#include "chrome/browser/renderer_host/resource_dispatcher_host_request_info.h"
#include "chrome/test/automation/automation_messages.h"
-#include "net/base/cookie_monster.h"
#include "net/base/io_buffer.h"
#include "net/base/net_errors.h"
#include "net/http/http_util.h"
@@ -257,7 +256,6 @@
redirect_url_.c_str());
URLRequestContext* ctx = request_->context();
- std::vector<std::string> response_cookies;
if (!response.headers.empty()) {
headers_ = new net::HttpResponseHeaders(
@@ -266,6 +264,7 @@
// Parse and set HTTP cookies.
const std::string name = "Set-Cookie";
std::string value;
+ std::vector<std::string> response_cookies;
void* iter = NULL;
while (headers_->EnumerateHeader(&iter, name, &value)) {
@@ -292,20 +291,10 @@
StringTokenizer cookie_parser(response.persistent_cookies, ";");
while (cookie_parser.GetNext()) {
- std::string cookie_string = cookie_parser.token();
- // Only allow cookies with valid name value pairs.
- if (cookie_string.find('=') != std::string::npos) {
- TrimWhitespace(cookie_string, TRIM_ALL, &cookie_string);
- // Ignore duplicate cookies, i.e. cookies passed in from the host
- // browser which also exist in the response header.
- if (!IsCookiePresentInCookieHeader(cookie_string,
- response_cookies)) {
- net::CookieOptions options;
- ctx->cookie_store()->SetCookieWithOptions(url_for_cookies,
- cookie_string,
- options);
- }
- }
+ net::CookieOptions options;
+ ctx->cookie_store()->SetCookieWithOptions(url_for_cookies,
+ cookie_parser.token(),
+ options);
}
}
@@ -447,19 +436,3 @@
message_filter_ = NULL;
}
}
-
-bool URLRequestAutomationJob::IsCookiePresentInCookieHeader(
- const std::string& cookie_line,
- const std::vector<std::string>& header_cookies) {
- net::CookieMonster::ParsedCookie parsed_current_cookie(cookie_line);
- for (size_t index = 0; index < header_cookies.size(); index++) {
- net::CookieMonster::ParsedCookie parsed_header_cookie(
- header_cookies[index]);
-
- if (parsed_header_cookie.Name() == parsed_current_cookie.Name())
- return true;
- }
-
- return false;
-}
-
« no previous file with comments | « chrome/browser/automation/url_request_automation_job.h ('k') | chrome/browser/renderer_host/resource_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698