bool accept_ch_frame_received = false;Unlike other fields, this one is set in //services/network, which is a kind of layer violation. I don't strongly oppose this, but can we have a comment that this field is set out side of //net, warning that any intermediate layers could modify this value?
if (!connected_callback_start_time_.is_null()) {Can we use `connected_callback_delay.is_null()` instead of having a separate flag? I assume we don't care much about a case where the end time is null.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
if (!was_cached_) {maybe
```
if (was_cached_) {
return;
}
```
is clearer now?
if (IsIncognitoProfile()) {Can we pass the result to this lambda rather than capturing `this`?
maybe
```
const bool is_incognito = IsIncognitoProfile();
```
here, and pass it to the both calls.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +1 |
maybe
```
if (was_cached_) {
return;
}
```
is clearer now?
Done
Can we pass the result to this lambda rather than capturing `this`?
Done
maybe
```
const bool is_incognito = IsIncognitoProfile();
```
here, and pass it to the both calls.
Done
Unlike other fields, this one is set in //services/network, which is a kind of layer violation. I don't strongly oppose this, but can we have a comment that this field is set out side of //net, warning that any intermediate layers could modify this value?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
Can we use `connected_callback_delay.is_null()` instead of having a separate flag? I assume we don't care much about a case where the end time is null.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
if (!connected_callback_start_time_.is_null()) {Kenichi IshibashiCan we use `connected_callback_delay.is_null()` instead of having a separate flag? I assume we don't care much about a case where the end time is null.
Looks like this is 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. |