| Index: chrome/browser/browsing_data/browsing_data_remover_unittest.cc
|
| diff --git a/chrome/browser/browsing_data/browsing_data_remover_unittest.cc b/chrome/browser/browsing_data/browsing_data_remover_unittest.cc
|
| index 0531d87453b35fed9d2d0d01766f3c960e71ad5c..e6d7c9a08195f4e2ee681b62953ec4d2e4d38518 100644
|
| --- a/chrome/browser/browsing_data/browsing_data_remover_unittest.cc
|
| +++ b/chrome/browser/browsing_data/browsing_data_remover_unittest.cc
|
| @@ -744,7 +744,7 @@ struct TestingDomainReliabilityServiceFactoryUserData
|
| const void* TestingDomainReliabilityServiceFactoryUserData::kKey =
|
| &TestingDomainReliabilityServiceFactoryUserData::kKey;
|
|
|
| -KeyedService* TestingDomainReliabilityServiceFactoryFunction(
|
| +scoped_ptr<KeyedService> TestingDomainReliabilityServiceFactoryFunction(
|
| content::BrowserContext* context) {
|
| const void* kKey = TestingDomainReliabilityServiceFactoryUserData::kKey;
|
|
|
| @@ -756,7 +756,7 @@ KeyedService* TestingDomainReliabilityServiceFactoryFunction(
|
| EXPECT_FALSE(data->attached);
|
|
|
| data->attached = true;
|
| - return data->service;
|
| + return make_scoped_ptr(data->service);
|
| }
|
|
|
| class ClearDomainReliabilityTester {
|
|
|