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

Unified Diff: chromeos/network/dhcp_proxy_script_fetcher_factory_chromeos.cc

Issue 2929153002: Use URLRequestContextBuilderMojo to create the SystemURLRequestContext. (Closed)
Patch Set: Merge Created 3 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
Index: chromeos/network/dhcp_proxy_script_fetcher_factory_chromeos.cc
diff --git a/chromeos/network/dhcp_proxy_script_fetcher_factory_chromeos.cc b/chromeos/network/dhcp_proxy_script_fetcher_factory_chromeos.cc
new file mode 100644
index 0000000000000000000000000000000000000000..89b43126f6313bd63c5cfed3c59bb15b07626432
--- /dev/null
+++ b/chromeos/network/dhcp_proxy_script_fetcher_factory_chromeos.cc
@@ -0,0 +1,24 @@
+// Copyright 2017 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 "chromeos/network/dhcp_proxy_script_fetcher_factory_chromeos.h"
+
+#include "base/memory/ptr_util.h"
+#include "chromeos/network/dhcp_proxy_script_fetcher_chromeos.h"
+
+namespace chromeos {
+
+DhcpProxyScriptFetcherFactoryChromeos::DhcpProxyScriptFetcherFactoryChromeos() {
+}
+
+DhcpProxyScriptFetcherFactoryChromeos::
+ ~DhcpProxyScriptFetcherFactoryChromeos() {}
+
+std::unique_ptr<net::DhcpProxyScriptFetcher>
+DhcpProxyScriptFetcherFactoryChromeos::Create(
+ net::URLRequestContext* url_request_context) {
+ return base::MakeUnique<DhcpProxyScriptFetcherChromeos>(url_request_context);
+}
+
+} // namespace chromeos

Powered by Google App Engine
This is Rietveld 408576698