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

Unified Diff: content/renderer/render_frame_impl.cc

Issue 2082733002: Fix for PDF find-in-page bug. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
« no previous file with comments | « content/renderer/pepper/pepper_webplugin_impl.cc ('k') | third_party/WebKit/public/web/WebPlugin.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_frame_impl.cc
diff --git a/content/renderer/render_frame_impl.cc b/content/renderer/render_frame_impl.cc
index c73b789cb8f00d00a90ce6b3407b47fca487437e..1600dda192990ca19d393e73a0d756df2ff8bd7e 100644
--- a/content/renderer/render_frame_impl.cc
+++ b/content/renderer/render_frame_impl.cc
@@ -5149,7 +5149,7 @@ void RenderFrameImpl::OnFind(int request_id,
if (plugin) {
if (options.findNext) {
// Just navigate back/forward.
- plugin->selectFindResult(options.forward);
+ plugin->selectFindResult(options.forward, request_id);
} else {
if (!plugin->startFind(search_text, options.matchCase, request_id)) {
// Send "no results".
« no previous file with comments | « content/renderer/pepper/pepper_webplugin_impl.cc ('k') | third_party/WebKit/public/web/WebPlugin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698