| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
WARNING: gwsq was unable to find a reviewer who is not on vacation. As a fallback, gwsq is ignoring vacations and assigning toyo...@chromium.org.
WARNING: gwsq was unable to find a reviewer who is not on vacation. As a fallback, gwsq is ignoring vacations and assigning toyo...@chromium.org.
From googleclient/chrome/chromium_gwsq/ipc/config.gwsq:
IPC: toyo...@chromium.org
📎 It looks like you’re making a possibly security-sensitive change! 📎 IPC security review isn’t a rubberstamp, so your friendly security reviewer will need a fair amount of context to review your CL effectively. Please review your CL description and code comments to make sure they provide context for someone unfamiliar with your project/area. Pay special attention to where data comes from and which processes it flows between (and their privilege levels). Feel free to point your security reviewer at design docs, bugs, or other links if you can’t reasonably make a self-contained CL description. (Also see https://cbea.ms/git-commit/).
IPC reviewer(s): toyo...@chromium.org
Reviewer source(s):
toyo...@chromium.org is from context(googleclient/chrome/chromium_gwsq/ipc/config.gwsq)
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
chrome-ipc-reviews@, please approve image_resource_type_converters.cc
| Code-Review | +1 |
result.clear();now this line is redundant?
| Auto-Submit | +1 |
now this line is redundant?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Improve String::Split(UChar, Vector) API
The `String::Split` API was not very ergonomic. It required declaring a
vector on a separate line before calling the split method with an
out-parameter.
This change introduces a new `String::SplitSkippingEmpty` method that
returns a `Vector<String>` by value. This allows for a more concise,
single-line expression for splitting strings.
All call sites of the old `String::Split(UChar, Vector<String>&)`
overload, which implicitly skipped empty strings, have been migrated to
use the new `SplitSkippingEmpty` method. The now-unused overload has
been removed to improve the API surface.
This is a pure refactoring for code health and readability, and has no
behavior changes.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |