| Index: third_party/WebKit/Source/core/page/Page.cpp
|
| diff --git a/third_party/WebKit/Source/core/page/Page.cpp b/third_party/WebKit/Source/core/page/Page.cpp
|
| index 0ae0ab8d4573026765ff80b967787317550b4104..42d3d8785ae59cfc2559481e70d21c04a6be60f4 100644
|
| --- a/third_party/WebKit/Source/core/page/Page.cpp
|
| +++ b/third_party/WebKit/Source/core/page/Page.cpp
|
| @@ -266,19 +266,6 @@ PluginData* Page::pluginData() const
|
| return m_pluginData.get();
|
| }
|
|
|
| -void Page::unmarkAllTextMatches()
|
| -{
|
| - if (!mainFrame())
|
| - return;
|
| -
|
| - Frame* frame = mainFrame();
|
| - do {
|
| - if (frame->isLocalFrame())
|
| - toLocalFrame(frame)->document()->markers().removeMarkers(DocumentMarker::TextMatch);
|
| - frame = frame->tree().traverseNextWithWrap(false);
|
| - } while (frame);
|
| -}
|
| -
|
| void Page::setValidationMessageClient(ValidationMessageClient* client)
|
| {
|
| m_validationMessageClient = client;
|
|
|