| 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. |
Refactor RemoveSubsettedFontPrefix() and IsStrUpper()
Refactor RemoveSubsettedFontPrefix() by performing the following:
1. Add "Maybe" prefix to the function name, since the font name may not
always have the prefix.
2. Change the pointer arg to a ref.
3. Rename subst_name to font_name. This isn't currently necessary, but
it will be moved to a different file at
https://pdfium-review.googlesource.com/c/pdfium/+/143592.
4. Use ByteString::Substr() instead of ByteString::Last().
Refactor IsStrUpper() to use a range-based for loop.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |