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

Unified Diff: net/spdy/spdy_network_transaction_unittest.cc

Issue 1003953008: Remove prerender cookie store, part 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@prerender-revert-cookie-store-3
Patch Set: rebase (just in case since this is so huge) Created 5 years, 9 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
« no previous file with comments | « net/proxy/proxy_script_fetcher_impl.cc ('k') | net/test/spawned_test_server/spawner_communicator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_network_transaction_unittest.cc
diff --git a/net/spdy/spdy_network_transaction_unittest.cc b/net/spdy/spdy_network_transaction_unittest.cc
index 7d2f80e5c42b4abea2cc6739200e0d31b174270a..b1dd944b3fad7907b637ea6c3c19b5b6304e3613 100644
--- a/net/spdy/spdy_network_transaction_unittest.cc
+++ b/net/spdy/spdy_network_transaction_unittest.cc
@@ -2488,11 +2488,8 @@ TEST_P(SpdyNetworkTransactionTest, RedirectGetRequest) {
GetParam().protocol,
false /* force_spdy_over_ssl*/,
true /* force_spdy_always */);
- scoped_ptr<URLRequest> r(
- spdy_url_request_context.CreateRequest(GURL("http://www.google.com/"),
- DEFAULT_PRIORITY,
- &d,
- NULL));
+ scoped_ptr<URLRequest> r(spdy_url_request_context.CreateRequest(
+ GURL("http://www.google.com/"), DEFAULT_PRIORITY, &d));
spdy_url_request_context.socket_factory().
AddSocketDataProvider(&data);
spdy_url_request_context.socket_factory().
@@ -2583,11 +2580,8 @@ TEST_P(SpdyNetworkTransactionTest, RedirectServerPush) {
false /* force_spdy_over_ssl*/,
true /* force_spdy_always */);
{
- scoped_ptr<URLRequest> r(
- spdy_url_request_context.CreateRequest(GURL("http://www.google.com/"),
- DEFAULT_PRIORITY,
- &d,
- NULL));
+ scoped_ptr<URLRequest> r(spdy_url_request_context.CreateRequest(
+ GURL("http://www.google.com/"), DEFAULT_PRIORITY, &d));
spdy_url_request_context.socket_factory().
AddSocketDataProvider(&data);
@@ -2598,12 +2592,8 @@ TEST_P(SpdyNetworkTransactionTest, RedirectServerPush) {
std::string contents("hello!");
EXPECT_EQ(contents, d.data_received());
- scoped_ptr<URLRequest> r2(
- spdy_url_request_context.CreateRequest(
- GURL("http://www.google.com/foo.dat"),
- DEFAULT_PRIORITY,
- &d2,
- NULL));
+ scoped_ptr<URLRequest> r2(spdy_url_request_context.CreateRequest(
+ GURL("http://www.google.com/foo.dat"), DEFAULT_PRIORITY, &d2));
spdy_url_request_context.socket_factory().
AddSocketDataProvider(&data2);
« no previous file with comments | « net/proxy/proxy_script_fetcher_impl.cc ('k') | net/test/spawned_test_server/spawner_communicator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698