commit | 7a0d5e18cc6cfc6d4c96f94c170d37ada75d16dc | [log] [tgz] |
---|---|---|
author | Marijn Kruisselbrink <[email protected]> | Thu May 24 22:55:09 2018 |
committer | Commit Bot <[email protected]> | Thu May 24 22:55:09 2018 |
tree | fecf4425e2e2ded74bef6f206cd1b661f8c01132 | |
parent | 3d5a676bf895098b7fd9ce442a2f2ef950716e38 [diff] [blame] |
[Mojo Blob URLs] Handle more navigation cases. This changes two more IPCs to resolve blob URLs in blink before sending the request to the browser, hopefully covering all cases. Still only works with the network service enabled (and that's probably not going to change), but at least fixes ordering issues the network service had between resolving and revoking blob URLs. Design doc: https://docs.google.com/document/d/1DqVcTWE9Qb_3KpIRH2bFV-6hWEr8S92c4ppY67YL1KI/edit#heading=h.n4fzuc6mgziv Bug: 800901 Cq-Include-Trybots: master.tryserver.chromium.linux:linux_mojo Change-Id: Iad88fc87264b248d15b03bdad2c24d2c5a46d9df Reviewed-on: https://chromium-review.googlesource.com/899508 Reviewed-by: Camille Lamy <[email protected]> Reviewed-by: Kinuko Yasuda <[email protected]> Reviewed-by: Scott Violet <[email protected]> Reviewed-by: Nasko Oskov <[email protected]> Commit-Queue: Marijn Kruisselbrink <[email protected]> Cr-Commit-Position: refs/heads/master@{#561670}
diff --git a/content/shell/browser/shell.cc b/content/shell/browser/shell.cc index 9a3975a..8e533513 100644 --- a/content/shell/browser/shell.cc +++ b/content/shell/browser/shell.cc
@@ -399,6 +399,7 @@ load_url_params.is_renderer_initiated = params.is_renderer_initiated; load_url_params.should_replace_current_entry = params.should_replace_current_entry; + load_url_params.blob_url_loader_factory = params.blob_url_loader_factory; if (params.uses_post) { load_url_params.load_type = NavigationController::LOAD_TYPE_HTTP_POST;