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

Unified Diff: content/browser/loader/url_loader_factory_impl.cc

Issue 1970693002: Use mojo for Chrome Loading, Part 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 4 years, 4 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/loader/url_loader_factory_impl.cc
diff --git a/content/browser/loader/url_loader_factory_impl.cc b/content/browser/loader/url_loader_factory_impl.cc
new file mode 100644
index 0000000000000000000000000000000000000000..2f02691c88816520504ff363a035a7c91b451add
--- /dev/null
+++ b/content/browser/loader/url_loader_factory_impl.cc
@@ -0,0 +1,50 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/browser/loader/url_loader_factory_impl.h"
+
+#include "content/browser/loader/resource_dispatcher_host_impl.h"
+#include "content/browser/loader/resource_message_filter.h"
+#include "content/common/resource_request.h"
+#include "content/common/url_loader.mojom.h"
+#include "content/public/browser/browser_thread.h"
+
+namespace content {
+
+URLLoaderFactoryImpl::URLLoaderFactoryImpl(
+ scoped_refptr<ResourceMessageFilter> resource_message_filter,
+ mojo::InterfaceRequest<mojom::URLLoaderFactory> request)
+ : resource_message_filter_(std::move(resource_message_filter)),
+ binding_(this, std::move(request)) {
+ DCHECK(resource_message_filter_);
+ DCHECK_CURRENTLY_ON(BrowserThread::IO);
+}
+
+URLLoaderFactoryImpl::~URLLoaderFactoryImpl() {
+ DCHECK_CURRENTLY_ON(BrowserThread::IO);
+}
+
+void URLLoaderFactoryImpl::CreateLoaderAndStart(
+ mojom::URLLoaderRequest request,
+ int32_t request_id,
+ const ResourceRequest& url_request,
+ mojom::URLLoaderClientPtr client) {
+ DCHECK_CURRENTLY_ON(BrowserThread::IO);
+
+ // TODO(yhirano): Provide the right routing ID.
+ const int routing_id = 0;
+ ResourceDispatcherHostImpl* rdh = ResourceDispatcherHostImpl::Get();
+ rdh->OnRequestResourceWithMojo(routing_id, request_id, url_request,
+ std::move(request), std::move(client),
+ resource_message_filter_.get());
+}
+
+void URLLoaderFactoryImpl::Create(
+ scoped_refptr<ResourceMessageFilter> filter,
+ mojo::InterfaceRequest<mojom::URLLoaderFactory> request) {
+ // The created instance is held by the StrongBinding.
+ new URLLoaderFactoryImpl(std::move(filter), std::move(request));
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698