Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(968)

Unified Diff: content/browser/webui/web_ui_url_loader_factory.cc

Issue 2906543002: Add support for reading blobs when using the network service. (Closed)
Patch Set: review comment Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/webui/web_ui_url_loader_factory.cc
diff --git a/content/browser/webui/web_ui_url_loader_factory.cc b/content/browser/webui/web_ui_url_loader_factory.cc
index 63702b6eb554c959f900ac7ba404637fe4adb895..18c34ee616c39b71d3cdac60213cf1d4ea85260f 100644
--- a/content/browser/webui/web_ui_url_loader_factory.cc
+++ b/content/browser/webui/web_ui_url_loader_factory.cc
@@ -286,7 +286,7 @@ class WebUIURLLoaderFactory : public mojom::URLLoaderFactory,
} // namespace
-mojom::URLLoaderFactoryPtr GetWebUIURLLoader(FrameTreeNode* node) {
+mojom::URLLoaderFactoryPtr CreateWebUIURLLoader(FrameTreeNode* node) {
int ftn_id = node->frame_tree_node_id();
if (g_factories.Get()[ftn_id].get() == nullptr)
g_factories.Get()[ftn_id] = base::MakeUnique<WebUIURLLoaderFactory>(node);

Powered by Google App Engine
This is Rietveld 408576698