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

Unified Diff: content/renderer/render_frame_impl.h

Issue 1959183002: Multi-Process Find-in-Page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments by nick@, and a bit of cleanup. Created 4 years, 7 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/renderer/render_frame_impl.h
diff --git a/content/renderer/render_frame_impl.h b/content/renderer/render_frame_impl.h
index a38836e9bf93fca907e818ae615d9d281bb3c2a4..4b8fdb783b3f18ee29e0b3de88189539709d2baa 100644
--- a/content/renderer/render_frame_impl.h
+++ b/content/renderer/render_frame_impl.h
@@ -808,11 +808,13 @@ class CONTENT_EXPORT RenderFrameImpl
void OnFind(int request_id,
const base::string16& search_text,
const blink::WebFindOptions& options);
+ void OnClearActiveFindMatch();
void OnStopFinding(StopFindAction action);
void OnEnableViewSourceMode();
void OnSuppressFurtherDialogs();
#if defined(OS_ANDROID)
void OnActivateNearestFindResult(int request_id, float x, float y);
+ void OnGetNearestFindResult(int request_id, float x, float y);
void OnFindMatchRects(int current_version);
void OnSelectPopupMenuItems(bool canceled,
const std::vector<int>& selected_indices);

Powered by Google App Engine
This is Rietveld 408576698