Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(278)

Unified Diff: components/domain_reliability/config.h

Issue 2613223002: Remove ScopedVector from base::JSONValueConverter (Closed)
Patch Set: Rebase and address comments from mmenke@ Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/domain_reliability/beacon.cc ('k') | components/domain_reliability/config.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/domain_reliability/config.h
diff --git a/components/domain_reliability/config.h b/components/domain_reliability/config.h
index 533d891242e7c5e588d8dd5829ee0632c69d6030..9f4ebb063a805d73db8d3e1e45ac9f0be0e5a109 100644
--- a/components/domain_reliability/config.h
+++ b/components/domain_reliability/config.h
@@ -42,11 +42,11 @@ struct DOMAIN_RELIABILITY_EXPORT DomainReliabilityConfig {
GURL origin;
bool include_subdomains;
- ScopedVector<GURL> collectors;
+ std::vector<std::unique_ptr<GURL>> collectors;
double success_sample_rate;
double failure_sample_rate;
- ScopedVector<std::string> path_prefixes;
+ std::vector<std::unique_ptr<std::string>> path_prefixes;
private:
DISALLOW_COPY_AND_ASSIGN(DomainReliabilityConfig);
« no previous file with comments | « components/domain_reliability/beacon.cc ('k') | components/domain_reliability/config.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698