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

Unified Diff: android_webview/native/aw_contents_client_bridge.h

Issue 2558223002: Move onReceivedError and onReceivedHttpError out of AwContentsIoThreadClientImpl (Closed)
Patch Set: add move assignment Created 4 years 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/native/aw_contents_client_bridge.h
diff --git a/android_webview/native/aw_contents_client_bridge.h b/android_webview/native/aw_contents_client_bridge.h
index 0b4091e9cd17a29324d530ab80ddde2c8b5d96ed..da8909ca0c7be6279ffcb95198d66a85fd1eb3d4 100644
--- a/android_webview/native/aw_contents_client_bridge.h
+++ b/android_webview/native/aw_contents_client_bridge.h
@@ -71,6 +71,13 @@ class AwContentsClientBridge : public AwContentsClientBridgeBase {
const std::string& account,
const std::string& args) override;
+ void OnReceivedError(const AwWebResourceRequest& request,
+ int error_code) override;
+
+ void OnReceivedHttpError(const AwWebResourceRequest& request,
+ const scoped_refptr<const net::HttpResponseHeaders>&
+ response_headers) override;
+
// Methods called from Java.
void ProceedSslError(JNIEnv* env,
const base::android::JavaRef<jobject>& obj,

Powered by Google App Engine
This is Rietveld 408576698