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

Unified Diff: android_webview/native/aw_contents_client_bridge.h

Issue 12091111: Implement Webviewclient.onReceivedSslError (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: wasting time... Created 7 years, 10 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 | « android_webview/native/aw_contents.cc ('k') | android_webview/native/aw_contents_client_bridge.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
new file mode 100644
index 0000000000000000000000000000000000000000..5e160deab9b0ba0f8ce8693c206a67746c5d5752
--- /dev/null
+++ b/android_webview/native/aw_contents_client_bridge.h
@@ -0,0 +1,56 @@
+// Copyright (c) 2013 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.
+
+#ifndef ANDROID_WEBVIEW_NATIVE_AW_CONTENTS_CLIENT_BRIDGE_H_
+#define ANDROID_WEBVIEW_NATIVE_AW_CONTENTS_CLIENT_BRIDGE_H_
+
+#include <jni.h>
+
+#include "android_webview/browser/aw_contents_client_bridge_base.h"
+#include "base/android/jni_helper.h"
+#include "base/android/scoped_java_ref.h"
+#include "base/callback.h"
+#include "base/id_map.h"
+
+namespace net {
+class X509Certificate;
+}
+
+namespace android_webview {
+
+// A class that handles the Java<->Native communication for the
+// AwContentsClient. AwContentsClientBridge is created and owned by
+// native AwContents class and it only has a weak reference to the
+// its Java peer. Since the Java AwContentsClientBridge can have
+// indirect refs from the Application (via callbacks) and so can outlive
+// webview, this class notifies it before being destroyed and to nullify
+// any references.
+class AwContentsClientBridge : public AwContentsClientBridgeBase {
+ public:
+
+ AwContentsClientBridge(JNIEnv* env, jobject obj);
+ virtual ~AwContentsClientBridge();
+
+ // AwContentsClientBridgeBase implementation
+ virtual void AllowCertificateError(int cert_error,
+ net::X509Certificate* cert,
+ const GURL& request_url,
+ const base::Callback<void(bool)>& callback,
+ bool* cancel_request) OVERRIDE;
+
+ // Methods called from Java.
+ void ProceedSslError(JNIEnv* env, jobject obj, jboolean proceed, jint id);
+
+ private:
+ JavaObjectWeakGlobalRef java_ref_;
+
+ typedef const base::Callback<void(bool)> CertErrorCallback;
+ IDMap<CertErrorCallback, IDMapOwnPointer> pending_cert_error_callbacks_;
+};
+
+bool RegisterAwContentsClientBridge(JNIEnv* env);
+
+} // namespace android_webview
+
+#endif // ANDROID_WEBVIEW_NATIVE_AW_CONTENTS_CLIENT_BRIDGE_H_
« no previous file with comments | « android_webview/native/aw_contents.cc ('k') | android_webview/native/aw_contents_client_bridge.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698