| Auto-Submit | +1 |
| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
I've found that using `String::Number()` like this, because it doesn't appear to be a win from a binary footprint PoV.
", ruby=", Ruby() ? "true" : "false"});Maybe it would be worthwhile to use `String::Boolean()` for cases like this?
```suggestion
", ruby=", String::Boolean(Ruby())});
```
(But maybe `String::Boolean()` would be better off returning a `StringView`...)
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Auto-Submit | +1 |
| Commit-Queue | +2 |
I've found that using `String::Number()` like this, because it doesn't appear to be a win from a binary footprint PoV.
Yes, the size of code using String::Format()` is pretty small. I guess it's difficult to produce smaller code with modern ways.
", ruby=", Ruby() ? "true" : "false"});Maybe it would be worthwhile to use `String::Boolean()` for cases like this?
```suggestion
", ruby=", String::Boolean(Ruby())});
```
(But maybe `String::Boolean()` would be better off returning a `StringView`...)
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
3 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: third_party/blink/renderer/platform/fonts/font_variant_east_asian.cc
Insertions: 1, Deletions: 1.
The diff is too large to show. Please review the diff.
```
Replace some String::Format() usages with StrCat() in platform/
This CL resolves some UNSAFE_TODOs, and should have no behavior
changes.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |