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 82058afac1f57815432cc43513d18efd05ce3340..a0c8168cb978c948b7e3747793327ec690732052 100644 |
--- a/third_party/WebKit/Source/core/page/Page.cpp |
+++ b/third_party/WebKit/Source/core/page/Page.cpp |
@@ -263,19 +263,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; |