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

Unified Diff: components/update_client/utils.h

Issue 1872053002: Implement an API to allow passing an "ap" parameter to component updates. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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/update_client/utils.h
diff --git a/components/update_client/utils.h b/components/update_client/utils.h
index af353f76d67634f33c7aac80d9d7c0bf357c574d..1a086060185aca0d0533575df0bbe443ba1f5375 100644
--- a/components/update_client/utils.h
+++ b/components/update_client/utils.h
@@ -99,6 +99,9 @@ bool VerifyFileHash256(const base::FilePath& filepath,
// Returns true if the |brand| parameter matches ^([a-zA-Z]{4})?$ .
bool IsValidBrand(const std::string& brand);
+// Returns true if the |ap| parameter matches ^([-+_=a-zA-Z0-9]{0,256})$ .
waffles 2016/04/08 21:06:16 Nit: no need for parens.
Sorin Jianu 2016/04/08 21:13:42 Done.
+bool IsValidAp(const std::string& ap);
+
// Removes the unsecure urls in the |urls| parameter.
void RemoveUnsecureUrls(std::vector<GURL>* urls);

Powered by Google App Engine
This is Rietveld 408576698