| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
result != EvpAutofillFlowResult::kSuccess) {Is there a reason we call UpdateEmailVerificationState() for success in a different place?
kFailed,should we lint that this enum is kept in sync with the mojom one?
state_str = "failed";Are these values queryable by the web developer?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Is there a reason we call UpdateEmailVerificationState() for success in a different place?
No reason, put that one here.
should we lint that this enum is kept in sync with the mojom one?
Done
Are these values queryable by the web developer?
No, they are in the user-agent shadow DOM which website can't access.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
From googleclient/chrome/chromium_gwsq/ipc/config.gwsq:
IPC: ort...@chromium.org
📎 It looks like you’re making a possibly security-sensitive change! 📎 IPC security review isn’t a rubberstamp, so your friendly security reviewer will need a fair amount of context to review your CL effectively. Please review your CL description and code comments to make sure they provide context for someone unfamiliar with your project/area. Pay special attention to where data comes from and which processes it flows between (and their privilege levels). Feel free to point your security reviewer at design docs, bugs, or other links if you can’t reasonably make a self-contained CL description. (Also see https://cbea.ms/git-commit/).
IPC reviewer(s): ort...@chromium.org
Reviewer source(s):
ort...@chromium.org is from context(googleclient/chrome/chromium_gwsq/ipc/config.gwsq)
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path fill="WindowText" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"/></svg>Remove `<path fill="none" d="M0 0h24v24H0z"/>`?
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24"><path fill="WindowText" d="M12 17c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-9h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h1.9c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm0 12H6V10h12v10z"/><path fill="none" d="M0 0h24v24H0z"/></svg>Remove `<path fill="none" d="M0 0h24v24H0z"/>`?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
default:
state = mojom::EmailVerificationState::kNone;
should_update = true;
break;How come we use default here?
default:
state = mojom::EmailVerificationState::kNone;
should_update = true;
break;How come we use default here?
Done
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path fill="WindowText" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"/></svg>Remove `<path fill="none" d="M0 0h24v24H0z"/>`?
Done
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24"><path fill="WindowText" d="M12 17c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-9h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h1.9c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm0 12H6V10h12v10z"/><path fill="none" d="M0 0h24v24H0z"/></svg>Remove `<path fill="none" d="M0 0h24v24H0z"/>`?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
[EVP] Add logged-out and failed states for the input field indicator
EvpAutofillFlowResult does not currently let us distinguish between
"email provider does not support EVP" and "user is logged out".
This CL maps both of those to a kLoggedOutOrUnsupported code.
Depending on UX feedback we can split this up.
Demo:
https://crbug.com/524671711#comment7
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |