Skip to content

Commit 6479ecd

Browse files
Selim GurunAndroid (Google) Code Review
authored andcommitted
Merge "Fix onFindResultReceived API" into jb-mr1-dev
2 parents 9b90ee2 + 92b81a3 commit 6479ecd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/java/android/webkit/WebView.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,15 +310,15 @@ public interface FindListener {
310310
/**
311311
* Notifies the listener about progress made by a find operation.
312312
*
313-
* @param numberOfMatches how many matches have been found
314313
* @param activeMatchOrdinal the zero-based ordinal of the currently selected match
314+
* @param numberOfMatches how many matches have been found
315315
* @param isDoneCounting whether the find operation has actually completed. The listener
316316
* may be notified multiple times while the
317317
* operation is underway, and the numberOfMatches
318318
* value should not be considered final unless
319319
* isDoneCounting is true.
320320
*/
321-
public void onFindResultReceived(int numberOfMatches, int activeMatchOrdinal,
321+
public void onFindResultReceived(int activeMatchOrdinal, int numberOfMatches,
322322
boolean isDoneCounting);
323323
}
324324

0 commit comments

Comments
 (0)