Code-Review | +1 |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
// credentialless iframe (which is an ephemeral context). When true, we want
Tiffany SongSorry I missed this earlier — this still refers to a bool
```suggestion
// credentialless iframe (which is an ephemeral context). When `kEphemeral`, we want
```
Done
// Determine if the visited link is already in the database.
Tiffany SongI think this is another accidental revert from merge conflict resolution — this comment was recently removed.
Done
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. |
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. |
Change ambiguous bool `is_ephemeral` to enum VisitedContextEphemerality
The HistoryAddPageArgs and AddPageVisit default constructors had a
boolean parameter, `is_ephemeral`, with a default value that is
placed after several other booleans with no default values. This creates
dangerous ambiguity when adding new boolean params, as the compiler
would not flag any issues if one were to mistakenly omit a parameter.
This change converts the boolean parameter into an effectively
equivalent enum to be more explicit.
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |