summaryrefslogtreecommitdiffstats
path: root/net/test
diff options
context:
space:
mode:
authortburkard@chromium.org <tburkard@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-12 21:39:42 +0000
committertburkard@chromium.org <tburkard@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-12 21:39:42 +0000
commitd670bbdb93cad67c0cbfbd60f702167a9cd0697c (patch)
tree0661c85eef059468a18b0de28def42bfd0c4efff /net/test
parent26a6e2925158afff49860b8f2c072e5cf224d7a7 (diff)
downloadchromium_src-d670bbdb93cad67c0cbfbd60f702167a9cd0697c.zip
chromium_src-d670bbdb93cad67c0cbfbd60f702167a9cd0697c.tar.gz
chromium_src-d670bbdb93cad67c0cbfbd60f702167a9cd0697c.tar.bz2
Allow the content browser client to specify a special cookie store to be
used for a given render process id. This special cookie store will then be used for renderer messages pertaining to cookies, url fetches in net, and websockets. If the special cookie store is NULL, a default cookie store will be used. Re-submit of https://codereview.chromium.org/188693003 See https://codereview.chromium.org/188693003 for reviewers/lgtm's. Review URL: https://codereview.chromium.org/197043005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256657 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/test')
-rw-r--r--net/test/spawned_test_server/spawner_communicator.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/test/spawned_test_server/spawner_communicator.cc b/net/test/spawned_test_server/spawner_communicator.cc
index 3887157..d7736b8 100644
--- a/net/test/spawned_test_server/spawner_communicator.cc
+++ b/net/test/spawned_test_server/spawner_communicator.cc
@@ -173,7 +173,7 @@ void SpawnerCommunicator::SendCommandAndWaitForResultOnIOThread(
DCHECK(!cur_request_.get());
context_.reset(new TestURLRequestContext);
cur_request_ = context_->CreateRequest(
- GenerateSpawnerCommandURL(command, port_), DEFAULT_PRIORITY, this);
+ GenerateSpawnerCommandURL(command, port_), DEFAULT_PRIORITY, this, NULL);
DCHECK(cur_request_);
int current_request_id = ++next_id_;
SpawnerRequestData* data = new SpawnerRequestData(current_request_id,