| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
// why network restrictions doesn’t apply to that request. More context onnit: don't instead of doesn't
<int value="5378" label="OBSOLETE_FencedFrameDisableUntrustedNetwork"/>nit: Add an obsoletion message to CL description:
`OBSOLETE_HISTOGRAM[Blink.FencedFrame.DisableUntrustedNetworkOutcome]=Feature has been deprecated`
Histogram [doc](https://chromium.googlesource.com/chromium/src/tools/+/HEAD/metrics/histograms/README.md#add-an-obsoletion-message).
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
// why network restrictions doesn’t apply to that request. More context onnit: don't instead of doesn't
Done
<int value="5378" label="OBSOLETE_FencedFrameDisableUntrustedNetwork"/>nit: Add an obsoletion message to CL description:
`OBSOLETE_HISTOGRAM[Blink.FencedFrame.DisableUntrustedNetworkOutcome]=Feature has been deprecated`Histogram [doc](https://chromium.googlesource.com/chromium/src/tools/+/HEAD/metrics/histograms/README.md#add-an-obsoletion-message).
| 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. |
Mike, in addition to the files you have ownership for, can you also PTAL at services/network/network_context.cc since it interacts with the Connection Allowlists logic, thanks!
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
-7k lines is a lot. 😊
I walked through the mojo files, the blink files, and the change to network context. They look reasonable to me. I don't have the context to know whether there are other bits and pieces that should be removed along with this; I'll rely on you, Andrew, and Xiaochen for completeness.
-7k lines is a lot. 😊
I walked through the mojo files, the blink files, and the change to network context. They look reasonable to me. I don't have the context to know whether there are other bits and pieces that should be removed along with this; I'll rely on you, Andrew, and Xiaochen for completeness.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Mike, in addition to the files you have ownership for, can you also PTAL at services/network/network_context.cc since it interacts with the Connection Allowlists logic, thanks!
Done
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
} /* kConnectionAllowlists */Is putting the name of the feature flag at the bottom of the block common practice?
// Temporary disgusting hack: if we have a NetworkRestriction but we've notPerhaps the first time in history that this statement was true 😊
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
} /* kConnectionAllowlists */Is putting the name of the feature flag at the bottom of the block common practice?
The if statement got so long that I added this for readability.
The plan is to actually do an early return if the feature is not enabled, but I will do it in a follow up, so that this CL is primarily removing code.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
@bashi@: PTAL at services/network for owners approval, thanks!
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Alex, PTAL at content/browser/renderer_host and content/public/browser for owner's approval, thanks!
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Sophie, PTAL at chrome/browser/* for owner's approval, thanks!
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Mason, PTAL at VirtualTestSuites for owners approval, thanks!
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
Alex MoshchukAlex, PTAL at content/browser/renderer_host and content/public/browser for owner's approval, thanks!
Those LGTM, thanks!
| Code-Review | +1 |
third_party/blink/web_tests/VirtualTestSuites LGTM!
Kudos on removing 7000+ lines of code! 🎉
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
tools/metrics/histograms/metadata/blink/histograms.xml lgtm
third_party/blink/web_tests/VirtualTestSuites LGTM!
Kudos on removing 7000+ lines of code! 🎉
Thanks 😊
[Fenced Frames] Remove window.fence.disableUntrustedNetwork code
This is the 2nd CL in a series that removes fenced storage read(FSR)
code. This CL does the following:
- removes window.fence.disableUntrustedNetwork API surface and its
implementation.
1st CL: https://chromium-review.googlesource.com/c/chromium/src/+/7709973
Follow up CLs will remove fence.notifyEvent
Fenced Storage Read's "do not launch" status announcement:
https://privacysandbox.google.com/overview/status
window.fence.disableUntrustedNetwork is gated behind a default disabled
feature flag and it was never enabled, so this CL does not impact any
launched behavior.
OBSOLETE_HISTOGRAM[Blink.FencedFrame.DisableUntrustedNetworkOutcome]=Feature has been deprecated
Also modified
NetworkServiceRestartBrowserTest.RestoreNetworkRevocationNonces to work
for Connection Allowlists.
Bug: 499191497
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
The WPT PR for this CL has been merged upstream! https://github.com/web-platform-tests/wpt/pull/59521
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |