| Index: components/safe_browsing/csd.proto
|
| diff --git a/components/safe_browsing/csd.proto b/components/safe_browsing/csd.proto
|
| index 0e3a5aa1da36e6b56f6e6defd9598dd431015f15..e33f34c7adfde84ff9711cf68557b336fd0696f0 100644
|
| --- a/components/safe_browsing/csd.proto
|
| +++ b/components/safe_browsing/csd.proto
|
| @@ -216,6 +216,19 @@ message LoginReputationClientRequest {
|
|
|
| // Whether the reused password is used for Chrome signin.
|
| optional bool is_chrome_signin_password = 3;
|
| +
|
| + // Sync account type. Only set if |is_chrome_signin_password| is true.
|
| + enum SyncAccountType {
|
| + // Not a sign-in user.
|
| + NOT_SIGNED_IN = 0;
|
| +
|
| + // User signed in with @gmail.com, or @googlemail.com account.
|
| + GMAIL = 1;
|
| +
|
| + // User signed in with a G Suite account.
|
| + GSUITE = 2;
|
| + }
|
| + optional SyncAccountType sync_account_type = 4;
|
| }
|
|
|
| optional PasswordReuseEvent password_reuse_event = 4;
|
|
|