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

Unified Diff: third_party/WebKit/public/web/WebFrame.h

Issue 1605863002: Restart search in page when new text is found. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: small clean up Created 4 years, 11 months 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: third_party/WebKit/public/web/WebFrame.h
diff --git a/third_party/WebKit/public/web/WebFrame.h b/third_party/WebKit/public/web/WebFrame.h
index b0ccc8e70da5140dc566e2db7d4f2f17d9448e4b..edf3304e137fb07df0bde21bd1676bdec30c4a2e 100644
--- a/third_party/WebKit/public/web/WebFrame.h
+++ b/third_party/WebKit/public/web/WebFrame.h
@@ -557,10 +557,11 @@ public:
//
// Returns true if the search string was found, false otherwise.
virtual bool find(int identifier,
- const WebString& searchText,
- const WebFindOptions& options,
Finnur 2016/01/29 17:47:50 Nit: Why delete this?
dvadym 2016/02/01 12:41:10 Style checker in git cl upload says that a name sh
- bool wrapWithinFrame,
- WebRect* selectionRect) = 0;
+ const WebString& searchText,
+ const WebFindOptions&,
+ bool wrapWithinFrame,
+ WebRect* selectionRect,
+ bool* activeNow) = 0;
// Notifies the frame that we are no longer interested in searching.
// This will abort any asynchronous scoping effort already under way

Powered by Google App Engine
This is Rietveld 408576698