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

Unified Diff: content/public/browser/render_view_host.h

Issue 128453002: Move Find Operations from RenderViewHost to WebContents (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 11 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: content/public/browser/render_view_host.h
diff --git a/content/public/browser/render_view_host.h b/content/public/browser/render_view_host.h
index e0744410f086e969b133110b30abeb35cbdd276c..7a70777bf4f107025a24c8546ff60d856900fea1 100644
--- a/content/public/browser/render_view_host.h
+++ b/content/public/browser/render_view_host.h
@@ -36,7 +36,6 @@ struct SelectedFileInfo;
}
namespace blink {
-struct WebFindOptions;
struct WebMediaPlayerAction;
struct WebPluginAction;
}
@@ -181,14 +180,6 @@ class CONTENT_EXPORT RenderViewHost : virtual public RenderWidgetHost {
// Asks the renderer to exit fullscreen
virtual void ExitFullscreen() = 0;
- // Finds text on a page.
- virtual void Find(int request_id, const base::string16& search_text,
- const blink::WebFindOptions& options) = 0;
-
- // Notifies the renderer that the user has closed the FindInPage window
- // (and what action to take regarding the selection).
- virtual void StopFinding(StopFindAction action) = 0;
-
// Causes the renderer to invoke the onbeforeunload event handler. The
// result will be returned via ViewMsg_ShouldClose. See also ClosePage and
// SwapOut, which fire the PageUnload event.

Powered by Google App Engine
This is Rietveld 408576698