| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
descriptors[1].Size = static_cast<ULONG>(meta_data_index);Is this cast needed? It seems that this CL doesn't change the type of `meta_data_index`, so it seems potentially unrelated.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
descriptors[1].Size = static_cast<ULONG>(meta_data_index);Is this cast needed? It seems that this CL doesn't change the type of `meta_data_index`, so it seems potentially unrelated.
| 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. |
2 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: base/trace_event/trace_logging_minimal_win.cc
Insertions: 1, Deletions: 2.
The diff is too large to show. Please review the diff.
```
fix UNSAFE_TODO's in trace_logging
use base::span to fix UNSAFE_TODO's in trace_logging_minimal_win.cc
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
base::span(descriptors_),Thanks for the CL!
drive-by: nit: The compiler should be able to deduce the conversion to span, so writing `descriptors_` directly should work. If not, I see this is an absl:: vector type, and there would be work to do to figure out why the compiler didn't deduce this.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |