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

Unified Diff: ios/web_view/internal/app/web_view_io_thread.mm

Issue 2894483003: Initialize ios/web_view translate with a system-wide URLRequestContext. (Closed)
Patch Set: Remove unneeded deps. 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: ios/web_view/internal/app/web_view_io_thread.mm
diff --git a/ios/web_view/internal/app/web_view_io_thread.mm b/ios/web_view/internal/app/web_view_io_thread.mm
new file mode 100644
index 0000000000000000000000000000000000000000..c8f611f6d96719b7a801a887345935dffa9730c3
--- /dev/null
+++ b/ios/web_view/internal/app/web_view_io_thread.mm
@@ -0,0 +1,23 @@
+// 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 "ios/web_view/internal/app/web_view_io_thread.h"
+
+#include "base/memory/ptr_util.h"
+#include "ios/web_view/internal/web_view_network_delegate.h"
+
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
+WebViewIOThread::WebViewIOThread(PrefService* local_state,
+ net_log::ChromeNetLog* net_log)
+ : IOThread(local_state, net_log) {}
+
+WebViewIOThread::~WebViewIOThread() = default;
+
+std::unique_ptr<net::NetworkDelegate>
+WebViewIOThread::GetSystemNetworkDelegate() {
+ return base::MakeUnique<ios_web_view::WebViewNetworkDelegate>();
+}

Powered by Google App Engine
This is Rietveld 408576698