| Index: android_webview/browser/find_helper.h
|
| diff --git a/android_webview/browser/find_helper.h b/android_webview/browser/find_helper.h
|
| index ada90849fa73da8ab0004cb79b9f8550c4f3d61a..b72d7830213ffc029da3dcf32c7fcb4c29e03c90 100644
|
| --- a/android_webview/browser/find_helper.h
|
| +++ b/android_webview/browser/find_helper.h
|
| @@ -53,11 +53,15 @@ class FindHelper : public content::WebContentsObserver {
|
| // Used to check the validity of FindNext operations.
|
| bool async_find_started_;
|
|
|
| - // Used to provide different ids to each request and for result
|
| + // Used to provide different IDs to each request and for result
|
| // verification in asynchronous calls.
|
| int find_request_id_counter_;
|
| int current_request_id_;
|
|
|
| + // Used to mark the beginning of the current find session. This is the ID of
|
| + // the first find request in the current session.
|
| + int current_session_id_;
|
| +
|
| // Required by FindNext and the incremental find replies.
|
| base::string16 last_search_string_;
|
| int last_match_count_;
|
|
|