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

Unified Diff: android_webview/browser/aw_contents.cc

Issue 2889193004: [WebView] Replace AwContentsIoThreadClient, InputStream and AwWebResourceResponse (Closed)
Patch Set: fix test crash 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: android_webview/browser/aw_contents.cc
diff --git a/android_webview/browser/aw_contents.cc b/android_webview/browser/aw_contents.cc
index e053c9616417e8471c2320af64b7da2327d24449..bd1295c57736b534e6eef9fbdaa00aa7e4a8651f 100644
--- a/android_webview/browser/aw_contents.cc
+++ b/android_webview/browser/aw_contents.cc
@@ -11,7 +11,7 @@
#include "android_webview/browser/aw_browser_context.h"
#include "android_webview/browser/aw_browser_main_parts.h"
#include "android_webview/browser/aw_contents_client_bridge.h"
-#include "android_webview/browser/aw_contents_io_thread_client_impl.h"
+#include "android_webview/browser/aw_contents_io_thread_client.h"
#include "android_webview/browser/aw_contents_lifecycle_notifier.h"
#include "android_webview/browser/aw_gl_functor.h"
#include "android_webview/browser/aw_pdf_exporter.h"
@@ -263,8 +263,7 @@ void AwContents::SetJavaPeers(
AwContentsClientBridge::Associate(web_contents_.get(),
contents_client_bridge_.get());
- AwContentsIoThreadClientImpl::Associate(web_contents_.get(),
- io_thread_client);
+ AwContentsIoThreadClient::Associate(web_contents_.get(), io_thread_client);
InterceptNavigationDelegate::Associate(
web_contents_.get(), base::MakeUnique<InterceptNavigationDelegate>(

Powered by Google App Engine
This is Rietveld 408576698