| Index: components/rappor/test_rappor_service.h
|
| diff --git a/components/rappor/test_rappor_service.h b/components/rappor/test_rappor_service.h
|
| index 56e85db1277286493916ddccf15c1dd4be4e46a8..01a850ccd502f9812efa7eae6ee7a95465e55461 100644
|
| --- a/components/rappor/test_rappor_service.h
|
| +++ b/components/rappor/test_rappor_service.h
|
| @@ -58,9 +58,9 @@ class TestRapporService : public RapporService {
|
| ~TestRapporService() override;
|
|
|
| // RapporService:
|
| - scoped_ptr<Sample> CreateSample(RapporType type) override;
|
| + std::unique_ptr<Sample> CreateSample(RapporType type) override;
|
| void RecordSampleObj(const std::string& metric_name,
|
| - scoped_ptr<Sample> sample) override;
|
| + std::unique_ptr<Sample> sample) override;
|
| void RecordSample(const std::string& metric_name,
|
| RapporType type,
|
| const std::string& sample) override;
|
|
|