summaryrefslogtreecommitdiffstats
path: root/content/browser/android
diff options
context:
space:
mode:
Diffstat (limited to 'content/browser/android')
-rw-r--r--content/browser/android/web_contents_observer_android.cc8
-rw-r--r--content/browser/android/web_contents_observer_android.h1
2 files changed, 0 insertions, 9 deletions
diff --git a/content/browser/android/web_contents_observer_android.cc b/content/browser/android/web_contents_observer_android.cc
index 19a622a..16ad09f 100644
--- a/content/browser/android/web_contents_observer_android.cc
+++ b/content/browser/android/web_contents_observer_android.cc
@@ -236,14 +236,6 @@ void WebContentsObserverAndroid::NavigationEntryCommitted(
Java_WebContentsObserverAndroid_navigationEntryCommitted(env, obj.obj());
}
-void WebContentsObserverAndroid::DidChangeVisibleSSLState() {
- JNIEnv* env = AttachCurrentThread();
- ScopedJavaLocalRef<jobject> obj(weak_java_observer_.get(env));
- if (obj.is_null())
- return;
- Java_WebContentsObserverAndroid_didChangeVisibleSSLState(env, obj.obj());
-}
-
void WebContentsObserverAndroid::DidAttachInterstitialPage() {
JNIEnv* env = AttachCurrentThread();
ScopedJavaLocalRef<jobject> obj(weak_java_observer_.get(env));
diff --git a/content/browser/android/web_contents_observer_android.h b/content/browser/android/web_contents_observer_android.h
index 319436c..9d4421f 100644
--- a/content/browser/android/web_contents_observer_android.h
+++ b/content/browser/android/web_contents_observer_android.h
@@ -77,7 +77,6 @@ class WebContentsObserverAndroid : public WebContentsObserver {
virtual void NavigationEntryCommitted(
const LoadCommittedDetails& load_details) OVERRIDE;
virtual void WebContentsDestroyed() OVERRIDE;
- virtual void DidChangeVisibleSSLState() OVERRIDE;
virtual void DidAttachInterstitialPage() OVERRIDE;
virtual void DidDetachInterstitialPage() OVERRIDE;