i'm still taking a closer look at this plus the next CL, but the overall structure looks really nice.
-fl
| 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. |
| Code-Review | +1 |
lgtm % a future CL to remove the bit operations.
-fl
options.stereo_mode = static_cast<content::ImmersiveStereoMode>(
(packed_result >> 4) & 0xF);i missed this earlier, but in a future CL please switch this not to require bit operations. this is technicalyl undefined if it happens that the packed result happens to have a value that doesn't correspond to an enum.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
options.stereo_mode = static_cast<content::ImmersiveStereoMode>(
(packed_result >> 4) & 0xF);i missed this earlier, but in a future CL please switch this not to require bit operations. this is technicalyl undefined if it happens that the packed result happens to have a value that doesn't correspond to an enum.
I created a separated bug to track this change: crbug.com/517174599
| 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. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |