diff options
Diffstat (limited to 'content/browser/android/web_contents_observer_proxy.cc')
-rw-r--r-- | content/browser/android/web_contents_observer_proxy.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/content/browser/android/web_contents_observer_proxy.cc b/content/browser/android/web_contents_observer_proxy.cc index 8566bee..a8e5eac 100644 --- a/content/browser/android/web_contents_observer_proxy.cc +++ b/content/browser/android/web_contents_observer_proxy.cc @@ -79,8 +79,7 @@ void WebContentsObserverProxy::RenderProcessGone( was_oom_protected); } -void WebContentsObserverProxy::DidStartLoading( - RenderViewHost* render_view_host) { +void WebContentsObserverProxy::DidStartLoading() { JNIEnv* env = AttachCurrentThread(); ScopedJavaLocalRef<jobject> obj(weak_java_observer_.get(env)); if (obj.is_null()) @@ -91,8 +90,7 @@ void WebContentsObserverProxy::DidStartLoading( jstring_url.obj()); } -void WebContentsObserverProxy::DidStopLoading( - RenderViewHost* render_view_host) { +void WebContentsObserverProxy::DidStopLoading() { JNIEnv* env = AttachCurrentThread(); ScopedJavaLocalRef<jobject> obj(weak_java_observer_.get(env)); if (obj.is_null()) |