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

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: Disabled tests on Android Release because of crbug.com/615291. Created 4 years, 6 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
« no previous file with comments | « third_party/WebKit/Source/core/page/Page.h ('k') | third_party/WebKit/Source/web/TextFinder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « third_party/WebKit/Source/core/page/Page.h ('k') | third_party/WebKit/Source/web/TextFinder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698