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 cc03905c73cafe5decc8f1e2831f6f69c4a8cb25..0b93e69613f3cbae2b1d0f756b8523a80e77c44f 100644 |
--- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp |
+++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp |
@@ -1451,9 +1451,9 @@ WebString WebLocalFrameImpl::pageProperty(const WebString& propertyName, int pag |
return m_printContext->pageProperty(frame(), propertyName.utf8().data(), pageIndex); |
} |
-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) |