Index: components/web_view/frame_tree_delegate.h |
diff --git a/components/web_view/frame_tree_delegate.h b/components/web_view/frame_tree_delegate.h |
index d14fe72a4e9359a1e6b9da3ed471c375ac4b40e6..f6722c13d35fc62f7d31695e1531903198b2d7ba 100644 |
--- a/components/web_view/frame_tree_delegate.h |
+++ b/components/web_view/frame_tree_delegate.h |
@@ -84,6 +84,13 @@ class FrameTreeDelegate { |
// action. |
virtual void OnViewEmbeddedInFrameDisconnected(Frame* frame); |
+ // Reports the current find state back to our owner. |
+ virtual void ReportFindInPageMatchCount(int32_t request_id, |
+ int32_t count, |
+ bool final_update); |
+ virtual void ReportFindInPageSelection(int32_t request_id, |
+ int32_t active_match_ordinal); |
+ |
protected: |
virtual ~FrameTreeDelegate() {} |
}; |