| Index: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| index 1fd3dd060f82da732c98439bfbdc752f3485df71..b0cfe1f203eb194b295305d80184d2314515f59f 100644
|
| --- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| @@ -2043,9 +2043,9 @@ void WebLocalFrameImpl::didCallIsSearchProviderInstalled()
|
| UseCounter::count(frame(), UseCounter::ExternalIsSearchProviderInstalled);
|
| }
|
|
|
| -bool WebLocalFrameImpl::find(int identifier, const WebString& searchText, const WebFindOptions& options, bool wrapWithinFrame, WebRect* selectionRect)
|
| +bool WebLocalFrameImpl::find(int identifier, const WebString& searchText, const WebFindOptions& options, bool wrapWithinFrame, WebRect* selectionRect, bool* activeNow)
|
| {
|
| - return ensureTextFinder().find(identifier, searchText, options, wrapWithinFrame, selectionRect);
|
| + return ensureTextFinder().find(identifier, searchText, options, wrapWithinFrame, selectionRect, activeNow);
|
| }
|
|
|
| void WebLocalFrameImpl::stopFinding(bool clearSelection)
|
|
|