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 59f1ca598552ba463bc945da02309bd14b273bfa..f722021cbabb1ae0c632bb9988ddeea339f13a26 100644 |
--- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp |
+++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp |
@@ -1462,9 +1462,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& newTextFound) |
{ |
- return ensureTextFinder().find(identifier, searchText, options, wrapWithinFrame, selectionRect); |
+ return ensureTextFinder().find(identifier, searchText, options, wrapWithinFrame, selectionRect, newTextFound); |
} |
void WebLocalFrameImpl::stopFinding(bool clearSelection) |