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

Unified Diff: components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_protocol_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
Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_protocol_unittest.cc
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_protocol_unittest.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_protocol_unittest.cc
index ba34dc762481ba4603120b54ba37c20795662ed4..281b308204d0a8187aa688b28ff0ac22c2481a3d 100644
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_protocol_unittest.cc
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_protocol_unittest.cc
@@ -251,8 +251,7 @@ class DataReductionProxyProtocolTest : public testing::Test {
scoped_ptr<URLRequest> r(context_->CreateRequest(
GURL("http://www.google.com/"),
net::DEFAULT_PRIORITY,
- &d,
- NULL));
+ &d));
r->set_method(method);
r->SetLoadFlags(net::LOAD_NORMAL);
@@ -358,7 +357,6 @@ TEST_F(DataReductionProxyProtocolTest, TestIdempotency) {
scoped_ptr<net::URLRequest> request(
context.CreateRequest(GURL("http://www.google.com/"),
net::DEFAULT_PRIORITY,
- NULL,
NULL));
request->set_method(tests[i].method);
EXPECT_EQ(
@@ -852,8 +850,7 @@ TEST_F(DataReductionProxyProtocolTest,
scoped_ptr<URLRequest> r(context_->CreateRequest(
GURL("http://www.google.com/"),
net::DEFAULT_PRIORITY,
- &d,
- NULL));
+ &d));
r->set_method("GET");
r->SetLoadFlags(net::LOAD_NORMAL);

Powered by Google App Engine
This is Rietveld 408576698