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

Unified Diff: components/component_updater/component_updater_paths.cc

Issue 1853753003: Certificate Transparency: New component for obtaining fresh STHs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing compilation errors on ChromeOS Created 4 years, 8 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
Index: components/component_updater/component_updater_paths.cc
diff --git a/components/component_updater/component_updater_paths.cc b/components/component_updater/component_updater_paths.cc
index 834b1cf9d54b25e68717a2bf072c060236d59afb..697d8defd7e73af66297a8f28cd5862ba17e896f 100644
--- a/components/component_updater/component_updater_paths.cc
+++ b/components/component_updater/component_updater_paths.cc
@@ -47,6 +47,9 @@ bool PathProvider(int key, base::FilePath* result) {
case DIR_SUPERVISED_USER_WHITELISTS:
cur = cur.Append(FILE_PATH_LITERAL("SupervisedUserWhitelists"));
break;
+ case DIR_CERT_TRANS_TREE_STATES:
+ cur = cur.Append(FILE_PATH_LITERAL("CertificateTransparency"));
+ break;
default:
return false;
}

Powered by Google App Engine
This is Rietveld 408576698