| 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 75e40d87f228028f7f8d4de8a363a05cb48e90c4..1704c6d7b3293d85aae3073810a39efd9b6d298f 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);
|
|
|
|
|