diff options
author | jknotten@chromium.org <jknotten@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-16 11:54:39 +0000 |
---|---|---|
committer | jknotten@chromium.org <jknotten@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-16 11:54:39 +0000 |
commit | afb3a5ece993eb95a1839d6fcb94e4a67ed19371 (patch) | |
tree | f8a560d533439ff31c5237389ad253dd1fb7a239 /build | |
parent | b7d1efa6f62d17bdde5a8b3dd8fc41bc6f1dfdb2 (diff) | |
download | chromium_src-afb3a5ece993eb95a1839d6fcb94e4a67ed19371.zip chromium_src-afb3a5ece993eb95a1839d6fcb94e4a67ed19371.tar.gz chromium_src-afb3a5ece993eb95a1839d6fcb94e4a67ed19371.tar.bz2 |
Fix findbugs uncalled private method in WebContentsDelegateAndroid
This findbugs warning seems to be related to the overloading of the
name onLoadProgressChanged. As discussed in earlier codereview
https://codereview.chromium.org/11365199/ , it is a good idea
to have the methods differently named anyway, since they have
different purposes.
BUG=
Review URL: https://chromiumcodereview.appspot.com/11415011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@168189 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/android/findbugs_filter/findbugs_known_bugs.txt | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/build/android/findbugs_filter/findbugs_known_bugs.txt b/build/android/findbugs_filter/findbugs_known_bugs.txt index ab7a2da..8579fe1 100644 --- a/build/android/findbugs_filter/findbugs_known_bugs.txt +++ b/build/android/findbugs_filter/findbugs_known_bugs.txt @@ -186,7 +186,6 @@ M P SS: Unread field: org.chromium.android_webview.test.util.ImagePageGenerator. M P SS: Unread field: org.chromium.android_webview.test.util.ImagePageGenerator.IMAGE_SUFFIX; should this field be static? At ImagePageGenerator.java M P SS: Unread field: org.chromium.native_test.ChromeNativeTestActivity.EXTRA_RUN_IN_SUB_THREAD; should this field be static? At ChromeNativeTestActivity.java M P SS: Unread field: org.chromium.native_test.ChromeNativeTestActivity.TAG; should this field be static? At ChromeNativeTestActivity.java -M P UPM: Private method org.chromium.content.components.web_contents_delegate_android.WebContentsDelegateAndroid.onLoadProgressChanged(double) is never called At WebContentsDelegateAndroid.java M P UrF: Unread field: org.chromium.content.browser.ContentViewGestureHandlerTest$MockListener.mLastFling2 At ContentViewGestureHandlerTest.java M P UrF: Unread field: org.chromium.content.browser.ContentViewGestureHandlerTest$MockListener.mLastScroll1 At ContentViewGestureHandlerTest.java M P UrF: Unread field: org.chromium.content.browser.ContentViewGestureHandlerTest$MockListener.mLastScroll2 At ContentViewGestureHandlerTest.java |