| 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. |
From googleclient/chrome/chromium_gwsq/ipc/config.gwsq:
IPC: kin...@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): kin...@chromium.org
Reviewer source(s):
kin...@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. |
| Code-Review | +1 |
SchemefulSite site = SchemefulSite(fetcher_endpoint_);Nit (pre-existing issue): To avoid repeating yourself, it's better to write
```
auto site = SchemefulSite(fetcher_endpoint_);
```
or
```
SchemefulSite site(fetcher_endpoint_);
```
#include "base/test/scoped_feature_list.h"You can remove this #include.
if (ignore_refresh_quota_) {Maybe rename to `ignore_signing_quota_` now?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +1 |
Nit (pre-existing issue): To avoid repeating yourself, it's better to write
```
auto site = SchemefulSite(fetcher_endpoint_);
```
or
```
SchemefulSite site(fetcher_endpoint_);
```
Done
You can remove this #include.
Thanks for spotting! Done
Maybe rename to `ignore_signing_quota_` now?
Done. I kept the original `RefreshQuota` parameter name for backwards compatibility though.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |