| Index: components/domain_reliability/util.h
|
| diff --git a/components/domain_reliability/util.h b/components/domain_reliability/util.h
|
| index f8bb204053431b757541bf433aff0d0ec71b90e7..3ef2e7543f6a3ed939d5a4d75cdce455c351f0a9 100644
|
| --- a/components/domain_reliability/util.h
|
| +++ b/components/domain_reliability/util.h
|
| @@ -11,7 +11,6 @@
|
| #include "base/callback_forward.h"
|
| #include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_vector.h"
|
| #include "base/time/clock.h"
|
| #include "base/time/tick_clock.h"
|
| #include "base/time/time.h"
|
| @@ -51,9 +50,10 @@ void GetUploadResultFromResponseDetails(
|
| base::TimeDelta retry_after,
|
| DomainReliabilityUploader::UploadResult* result);
|
|
|
| -GURL SanitizeURLForReport(const GURL& beacon_url,
|
| - const GURL& collector_url,
|
| - const ScopedVector<std::string>& path_prefixes);
|
| +GURL SanitizeURLForReport(
|
| + const GURL& beacon_url,
|
| + const GURL& collector_url,
|
| + const std::vector<std::unique_ptr<std::string>>& path_prefixes);
|
|
|
| // Mockable wrapper around TimeTicks::Now and Timer. Mock version is in
|
| // test_util.h.
|
|
|