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

Unified Diff: components/web_view/frame_tree_delegate.cc

Issue 1371773003: mandoline: Add find in page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase to ToT Created 5 years, 2 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: components/web_view/frame_tree_delegate.cc
diff --git a/components/web_view/frame_tree_delegate.cc b/components/web_view/frame_tree_delegate.cc
index ab7e8d38b4382136880843822ad31f014e8bb9d7..c04ec7064279a582f54dfbecd498d3f07c0a6a83 100644
--- a/components/web_view/frame_tree_delegate.cc
+++ b/components/web_view/frame_tree_delegate.cc
@@ -9,5 +9,13 @@ namespace web_view {
void FrameTreeDelegate::DidCreateFrame(Frame* frame) {}
void FrameTreeDelegate::DidDestroyFrame(Frame* frame) {}
void FrameTreeDelegate::OnViewEmbeddedInFrameDisconnected(Frame* frame) {}
+void FrameTreeDelegate::OnFindInFrameCountUpdated(int32_t request_id,
+ Frame* frame,
+ int32_t count,
+ bool final_update) {}
+void FrameTreeDelegate::OnFindInPageSelectionUpdated(
+ int32_t request_id,
+ Frame* frame,
+ int32_t active_match_ordinal) {}
} // namespace web_view

Powered by Google App Engine
This is Rietveld 408576698