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

Unified Diff: components/safe_browsing/csd.proto

Issue 2747313002: PasswordProtectionService verdict cache management (Closed)
Patch Set: nit Created 3 years, 9 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/safe_browsing/csd.proto
diff --git a/components/safe_browsing/csd.proto b/components/safe_browsing/csd.proto
index 3da6cd68b6910c2aa23409cb029644c8104017da..1b61b4f2c0ebad27a9304710dbb04e5fa0396243 100644
--- a/components/safe_browsing/csd.proto
+++ b/components/safe_browsing/csd.proto
@@ -247,6 +247,18 @@ message LoginReputationClientResponse {
// The pattern will always match the page_url of the request, and will be
// a substring of page_url.
optional string cache_expression = 3;
+
+ // If set true, we do not match a url's path-prefix with the cache_expression.
+ //
+ // Examples:
+ // If set true, a cache_expression "dropbox.com" will match
+ // "dropbox.com",
+ // "dropbox.com/",
+ // "dropbox.com/login.html?param=val",
+ // "test.dropbox.com/"
+ // but will NOT match
+ // "dropbox.com/abc/"
+ optional bool cache_expression_exact_match = 4;
Nathan Parker 2017/03/20 15:55:35 This isn't really "exact match," since we're ignor
Jialiu Lin 2017/03/20 18:02:39 Ah, I copied this change from cl/150491510. I beli
}
message ClientMalwareResponse {

Powered by Google App Engine
This is Rietveld 408576698