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. |