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

Unified Diff: components/safe_browsing/csd.proto

Issue 2896053002: Don't send saved password domain (Closed)
Patch Set: add is_chrome_signin_password Created 3 years, 7 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 | « no previous file | components/safe_browsing/password_protection/password_protection_request.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/safe_browsing/csd.proto
diff --git a/components/safe_browsing/csd.proto b/components/safe_browsing/csd.proto
index 689c877a42e4e7e93e6c76a8c7d85c08f957336a..7bb5920bd7caebe6c083550bfb8806447f7b7e24 100644
--- a/components/safe_browsing/csd.proto
+++ b/components/safe_browsing/csd.proto
@@ -208,14 +208,15 @@ message LoginReputationClientRequest {
repeated Frame frames = 3;
// The message contains fields needed for a password reuse event.
+ // Next tag: 4
message PasswordReuseEvent {
- // Origins that the reused password had been used on. The origins are
- // maintained by Chrome password manager.
- // The field is filled in only when TriggerType is PASSWORD_REUSE_EVENT.
- repeated string password_reused_original_origins = 1;
+ reserved 1;
// The frame that the password reuse is detected.
optional int32 frame_id = 2;
+
+ // Whether the reused password is used for Chrome signin.
+ optional bool is_chrome_signin_password = 3;
}
optional PasswordReuseEvent password_reuse_event = 4;
« no previous file with comments | « no previous file | components/safe_browsing/password_protection/password_protection_request.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698