Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(661)

Unified Diff: third_party/WebKit/Source/core/page/Page.cpp

Issue 1959183002: Multi-Process Find-in-Page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased and made WebLocalFrame::isFocused() private. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698