| Index: components/rappor/log_uploader_unittest.cc
|
| diff --git a/components/rappor/log_uploader_unittest.cc b/components/rappor/log_uploader_unittest.cc
|
| index 8c175b4e4a66fa3f89dd6f14af413c515a0908e2..ac37ed999af56f13241f0e6c615af262c4e4b7a4 100644
|
| --- a/components/rappor/log_uploader_unittest.cc
|
| +++ b/components/rappor/log_uploader_unittest.cc
|
| @@ -70,7 +70,7 @@ class LogUploaderTest : public testing::Test {
|
| };
|
|
|
| TEST_F(LogUploaderTest, Success) {
|
| - TestLogUploader uploader(request_context_);
|
| + TestLogUploader uploader(request_context_.get());
|
|
|
| factory_.SetFakeResponse(GURL(kTestServerURL),
|
| std::string(),
|
| @@ -84,7 +84,7 @@ TEST_F(LogUploaderTest, Success) {
|
| }
|
|
|
| TEST_F(LogUploaderTest, Rejection) {
|
| - TestLogUploader uploader(request_context_);
|
| + TestLogUploader uploader(request_context_.get());
|
|
|
| factory_.SetFakeResponse(GURL(kTestServerURL),
|
| std::string(),
|
| @@ -98,7 +98,7 @@ TEST_F(LogUploaderTest, Rejection) {
|
| }
|
|
|
| TEST_F(LogUploaderTest, Failure) {
|
| - TestLogUploader uploader(request_context_);
|
| + TestLogUploader uploader(request_context_.get());
|
|
|
| factory_.SetFakeResponse(GURL(kTestServerURL),
|
| std::string(),
|
|
|