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

Unified Diff: content/components/web_contents_delegate_android/web_contents_delegate_android.cc

Issue 11415011: Fix findbugs uncalled private method in WebContentsDelegateAndroid (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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: content/components/web_contents_delegate_android/web_contents_delegate_android.cc
diff --git a/content/components/web_contents_delegate_android/web_contents_delegate_android.cc b/content/components/web_contents_delegate_android/web_contents_delegate_android.cc
index 9256aa3359e077674eb23dbb3e0990a82e0fef6c..e212b2c7bbcabc9e091d589a64b903ffe192593e 100644
--- a/content/components/web_contents_delegate_android/web_contents_delegate_android.cc
+++ b/content/components/web_contents_delegate_android/web_contents_delegate_android.cc
@@ -151,7 +151,7 @@ void WebContentsDelegateAndroid::LoadProgressChanged(WebContents* source,
ScopedJavaLocalRef<jobject> obj = GetJavaDelegate(env);
if (obj.is_null())
return;
- Java_WebContentsDelegateAndroid_onLoadProgressChanged(
+ Java_WebContentsDelegateAndroid_notifyLoadProgressChanged(
env,
obj.obj(),
progress);

Powered by Google App Engine
This is Rietveld 408576698