ready for review! see PS1/PS2 diff for fixes!
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
*browser_context_);What happened to the previous version? Does it fail because `*storage_partition_->browser_context()` is gone at some point?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
const raw_ptr<BrowserContext> browser_context_;`raw_ref` since it can't be null
`raw_ref` since it can't be null
Done
What happened to the previous version? Does it fail because `*storage_partition_->browser_context()` is gone at some point?
Yes. `StoragePartitionImpl::~StoragePartitionImpl()` clears its BrowserContext pointer in the destructor body, and member destruction then tears down `KeepAliveURLLoaderService` and its loaders. The previous loader destructor therefore bound a reference from `nullptr`.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |