am 6479ecd1: Merge "Fix onFindResultReceived API" into jb-mr1-dev

* commit '6479ecd1b24e9d5a5636130cb4b0c353b396ff0e':
  Fix onFindResultReceived API
This commit is contained in:
Selim Gurun
2012-08-22 09:08:41 -07:00
committed by Android Git Automerger

View File

@@ -310,15 +310,15 @@ public class WebView extends AbsoluteLayout
/** /**
* Notifies the listener about progress made by a find operation. * Notifies the listener about progress made by a find operation.
* *
* @param numberOfMatches how many matches have been found
* @param activeMatchOrdinal the zero-based ordinal of the currently selected match * @param activeMatchOrdinal the zero-based ordinal of the currently selected match
* @param numberOfMatches how many matches have been found
* @param isDoneCounting whether the find operation has actually completed. The listener * @param isDoneCounting whether the find operation has actually completed. The listener
* may be notified multiple times while the * may be notified multiple times while the
* operation is underway, and the numberOfMatches * operation is underway, and the numberOfMatches
* value should not be considered final unless * value should not be considered final unless
* isDoneCounting is true. * isDoneCounting is true.
*/ */
public void onFindResultReceived(int numberOfMatches, int activeMatchOrdinal, public void onFindResultReceived(int activeMatchOrdinal, int numberOfMatches,
boolean isDoneCounting); boolean isDoneCounting);
} }