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

Unified Diff: components/component_updater/component_updater_paths.cc

Issue 1887743003: Allow the component updater framework to control Origin Trials. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ef-finch
Patch Set: 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 697d8defd7e73af66297a8f28cd5862ba17e896f..510725b35795fe5500d730a2421b010b424c30f4 100644
--- a/components/component_updater/component_updater_paths.cc
+++ b/components/component_updater/component_updater_paths.cc
@@ -50,6 +50,9 @@ bool PathProvider(int key, base::FilePath* result) {
case DIR_CERT_TRANS_TREE_STATES:
cur = cur.Append(FILE_PATH_LITERAL("CertificateTransparency"));
break;
+ case DIR_ORIGIN_TRIAL_KEYS:
+ cur = cur.Append(FILE_PATH_LITERAL("OriginTrials"));
+ break;
default:
return false;
}

Powered by Google App Engine
This is Rietveld 408576698