| 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 9672566fe529b0560898a9a17ef532915fc524ee..e13a1f22ff2528c4f28b7bb10751ae8fc440ddeb 100644
|
| --- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| @@ -2006,6 +2006,11 @@ void WebLocalFrameImpl::cancelPendingScopingEffort()
|
| m_textFinder->cancelPendingScopingEffort();
|
| }
|
|
|
| +bool WebLocalFrameImpl::scopingInProgress()
|
| +{
|
| + return m_textFinder ? m_textFinder->scopingInProgress() : false;
|
| +}
|
| +
|
| void WebLocalFrameImpl::increaseMatchCount(int count, int identifier)
|
| {
|
| ensureTextFinder().increaseMatchCount(identifier, count);
|
|
|