OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/browser/webui/web_ui_url_loader_factory.h" | 5 #include "content/browser/webui/web_ui_url_loader_factory.h" |
6 | 6 |
7 #include <map> | 7 #include <map> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/lazy_instance.h" | 10 #include "base/lazy_instance.h" |
11 #include "base/logging.h" | 11 #include "base/logging.h" |
12 #include "base/memory/ref_counted_memory.h" | 12 #include "base/memory/ref_counted_memory.h" |
| 13 #include "base/single_thread_task_runner.h" |
13 #include "base/strings/string_piece.h" | 14 #include "base/strings/string_piece.h" |
14 #include "content/browser/blob_storage/blob_internals_url_loader.h" | 15 #include "content/browser/blob_storage/blob_internals_url_loader.h" |
15 #include "content/browser/blob_storage/chrome_blob_storage_context.h" | 16 #include "content/browser/blob_storage/chrome_blob_storage_context.h" |
16 #include "content/browser/frame_host/frame_tree_node.h" | 17 #include "content/browser/frame_host/frame_tree_node.h" |
17 #include "content/browser/frame_host/render_frame_host_impl.h" | 18 #include "content/browser/frame_host/render_frame_host_impl.h" |
18 #include "content/browser/histogram_internals_url_loader.h" | 19 #include "content/browser/histogram_internals_url_loader.h" |
19 #include "content/browser/resource_context_impl.h" | 20 #include "content/browser/resource_context_impl.h" |
20 #include "content/browser/webui/network_error_url_loader.h" | 21 #include "content/browser/webui/network_error_url_loader.h" |
21 #include "content/browser/webui/url_data_manager_backend.h" | 22 #include "content/browser/webui/url_data_manager_backend.h" |
22 #include "content/browser/webui/url_data_source_impl.h" | 23 #include "content/browser/webui/url_data_source_impl.h" |
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 } // namespace | 290 } // namespace |
290 | 291 |
291 mojom::URLLoaderFactoryPtr GetWebUIURLLoader(FrameTreeNode* node) { | 292 mojom::URLLoaderFactoryPtr GetWebUIURLLoader(FrameTreeNode* node) { |
292 int ftn_id = node->frame_tree_node_id(); | 293 int ftn_id = node->frame_tree_node_id(); |
293 if (g_factories.Get()[ftn_id].get() == nullptr) | 294 if (g_factories.Get()[ftn_id].get() == nullptr) |
294 g_factories.Get()[ftn_id] = base::MakeUnique<WebUIURLLoaderFactory>(node); | 295 g_factories.Get()[ftn_id] = base::MakeUnique<WebUIURLLoaderFactory>(node); |
295 return g_factories.Get()[ftn_id]->CreateBinding(); | 296 return g_factories.Get()[ftn_id]->CreateBinding(); |
296 } | 297 } |
297 | 298 |
298 } // namespace content | 299 } // namespace content |
OLD | NEW |