Commit-Queue | +1 |
bool is_registered_in_browser_process() const {
Andy Paicunit: Per the Blink Style Guide, function names should use `CamelCase` starting with an uppercase letter. Please rename `is_registered_in_browser_process` to `IsRegisteredInBrowserProcess`. (Blink Style Guide: Naming - Use 'CamelCase' for all function names)
_To keep this interaction as brief and non-intrusive as possible, please consider responding with one of following options:
**Done** | **Won't fix**: reason | **b/<bug_id>** | **Invalid:** reasonThis comment was generated by [Experimental Blink C++ Code Review Agent](http://go/blink-c++-code-review-agent).AI reviews can sometimes be inaccurate; We appreciate your 🙏 feedback 🙏 to help us improve.[File a bug](http://go/blink-c++-code-review-agent-feedback) | [Provide feedback on chat](https://chat.google.com/room/AAQA0zhQHe0?cls=4) | [Opt-out](https://ganpati2.corp.google.com/group/peep-genai-blink-agent-optout.prod)_
Won't fix: outdated
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
FYI
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Seems ok, just some small things,
// TODO(crbug.com/448593977): Remove this when the "preciselocation"
No access to this bug...
if (params.name == html_names::kPreciselocationAttr) {
Case sensitive?
}
if (params.name == html_names::kWatchAttr) {
These should both be `} else if {`
params.new_value == kAccuracyModePrecise) {
case sensitive?
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
// TODO(crbug.com/448593977): Remove this when the "preciselocation"
No access to this bug...
Done
if (params.name == html_names::kPreciselocationAttr) {
Andy PaicuCase sensitive?
Since this is an attribute name it seems like it's already lowercase. At least looking at other examples it doesn't seem like there is a need to do case-insensitive checks.
e.g.
if (params.name == html_names::kWatchAttr) {
These should both be `} else if {`
Done
params.new_value == kAccuracyModePrecise) {
Andy Paicucase sensitive?
Done
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. |
Code-Review | +1 |
Thanks! LGTM.
if (params.name == html_names::kPreciselocationAttr) {
Andy PaicuCase sensitive?
Since this is an attribute name it seems like it's already lowercase. At least looking at other examples it doesn't seem like there is a need to do case-insensitive checks.
e.g.
You're right - thanks. I was reviewing too quickly.
GeolocationPreciseLocationAttributeCamelCaseDoesNotChangeText) {
Nice, thanks.
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
We should also update the idl file, right?
Done
I've updated the IDL and the +1 was lost. Mason PTAL.
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. |