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

Unified Diff: ios/chrome/browser/net/crl_set_fetcher.cc

Issue 2258263002: Consistently use namespaced base::Version. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased against master. Created 4 years, 4 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/variations/study_filtering_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/net/crl_set_fetcher.cc
diff --git a/ios/chrome/browser/net/crl_set_fetcher.cc b/ios/chrome/browser/net/crl_set_fetcher.cc
index a7e78a2374012728a242714c0892256d4e77ec2a..7fe5a9f6cfefcb4adea5b05395e75989f9648166 100644
--- a/ios/chrome/browser/net/crl_set_fetcher.cc
+++ b/ios/chrome/browser/net/crl_set_fetcher.cc
@@ -135,12 +135,12 @@ void CRLSetFetcher::RegisterComponent(uint32_t sequence_of_loaded_crl) {
kPublicKeySHA256 + sizeof(kPublicKeySHA256));
component.installer = this;
component.name = "CRLSet";
- component.version = Version(base::UintToString(sequence_of_loaded_crl));
+ component.version = base::Version(base::UintToString(sequence_of_loaded_crl));
component.allows_background_download = false;
component.requires_network_encryption = false;
if (!component.version.IsValid()) {
NOTREACHED();
- component.version = Version("0");
+ component.version = base::Version("0");
}
if (!cus_->RegisterComponent(component))
« no previous file with comments | « components/variations/study_filtering_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698