| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
Nice! Thanks for adding this feature! The code looks good - just some small stuff.
BASE_FEATURE(kDevToolsAllowPopoverForcing, base::FEATURE_ENABLED_BY_DEFAULT);Did these all mean to overwrite the old feature? (Usually it's preferable to remove the old flag in one CL and add a new one in a separate one, in case of issues.)
Up to you - I'm ok as-is, if you prefer.
probe::WillLoseInterest(this, &force_interest);WillLoseInterest feels a little confusing to me. Perhaps something more like `ShouldInterestBeForced` or similar?
return protocol::Response::ServerError("node has no interest target");nit: maybe "node is not an interest invoker"?
element->InterestGained(target,
Element::InterestState::kExplicitInterest);I think it might be better to just use `ShowInterestNow()`.
*force_interest = true;Maybe always set it, rather than only to true?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |