| Auto-Submit | +1 |
| Commit-Queue | +1 |
Ken, please take a look. Thank you! ^_^
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
lgtm
Convert(const blink::mojom::blink::CmtgKeyResponsePtr& cmtg_key) {There is an `std::move()` on this argument when the function is called, and below moves on its fields to avoid copies. Since this is a reference, the key and signature moves are likely turned into copies though. Maybe change this to a by-value call?
The other converters have the same problem, it looks like, although their callers mostly don't do moves.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Auto-Submit | +1 |
| Commit-Queue | +1 |
Jeremy, please take a look at third_party/blink/renderer/platform/runtime_enabled_features.json5.
Thank you! ^_^
Convert(const blink::mojom::blink::CmtgKeyResponsePtr& cmtg_key) {There is an `std::move()` on this argument when the function is called, and below moves on its fields to avoid copies. Since this is a reference, the key and signature moves are likely turned into copies though. Maybe change this to a by-value call?
The other converters have the same problem, it looks like, although their callers mostly don't do moves.
It seems this can't be passed by value or the type converter machinery complains, so I removed the `std::move`s instead.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |