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

Unified Diff: mojo/services/network/url_loader_factory_impl.cc

Issue 1161463004: Move URL Loader creation to a separate factory object. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 6 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
« no previous file with comments | « mojo/services/network/url_loader_factory_impl.h ('k') | mojo/shell/application_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/network/url_loader_factory_impl.cc
diff --git a/mojo/services/network/url_loader_factory_impl.cc b/mojo/services/network/url_loader_factory_impl.cc
new file mode 100644
index 0000000000000000000000000000000000000000..f9e6cc345ed3c86d7b452694ea0006472a626958
--- /dev/null
+++ b/mojo/services/network/url_loader_factory_impl.cc
@@ -0,0 +1,33 @@
+// Copyright 2015 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 "mojo/services/network/url_loader_factory_impl.h"
+
+#include "mojo/services/network/url_loader_impl.h"
+
+namespace mojo {
+
+URLLoaderFactoryImpl::URLLoaderFactoryImpl(
+ ApplicationConnection* connection,
+ NetworkContext* context,
+ scoped_ptr<mojo::AppRefCount> app_refcount,
+ InterfaceRequest<URLLoaderFactory> request)
+ : context_(context),
+ app_refcount_(app_refcount.Pass()),
+ binding_(this, request.Pass()) {
+}
+
+URLLoaderFactoryImpl::~URLLoaderFactoryImpl() {
+}
+
+void URLLoaderFactoryImpl::CreateURLLoader(InterfaceRequest<URLLoader> loader) {
+ // TODO(darin): Plumb origin. Use for CORS.
+ // TODO(beng): Figure out how to get origin through to here.
+ // The loader will delete itself when the pipe is closed, unless a request is
+ // in progress. In which case, the loader will delete itself when the request
+ // is finished.
+ new URLLoaderImpl(context_, loader.Pass(), app_refcount_->Clone());
+}
+
+} // namespace mojo
« no previous file with comments | « mojo/services/network/url_loader_factory_impl.h ('k') | mojo/shell/application_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698