| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
This seems reasonable to me, but I wouldn't be surprised if we do hit the DCHECK for some
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
DCHECK(!last_time_shown_.is_null());You could make this a CHECK(, NotFatalUntil) to see if this happens without crashing the browser. Problem with DCHECK is it's only enabled in debug builds and a small number of Canary builds. The recommendation is typically to use CHECKs, and making it NotFatal makes sense here bc it _shouldn't_ break anything, IIUC
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Thanks a lot, I switched to the non-fatal thingy.
I'm thinking if it triggers very infrequently, it should be ok-ish to remove the check in a little while.
You could make this a CHECK(, NotFatalUntil) to see if this happens without crashing the browser. Problem with DCHECK is it's only enabled in debug builds and a small number of Canary builds. The recommendation is typically to use CHECKs, and making it NotFatal makes sense here bc it _shouldn't_ break anything, IIUC
| 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. |
| Code-Review | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |