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

Unified Diff: extensions/browser/api/web_view/web_view_internal_api.cc

Issue 597753003: Implement find in page support for top level BrowserPlugins. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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: extensions/browser/api/web_view/web_view_internal_api.cc
diff --git a/extensions/browser/api/web_view/web_view_internal_api.cc b/extensions/browser/api/web_view/web_view_internal_api.cc
index 62b349707198b349ef9909575d7c72b492247e0e..e9a5ff522b293ada0c0f90dc9e5a9ba4403971c8 100644
--- a/extensions/browser/api/web_view/web_view_internal_api.cc
+++ b/extensions/browser/api/web_view/web_view_internal_api.cc
@@ -266,7 +266,7 @@ bool WebViewInternalFindFunction::RunAsyncSafe(WebViewGuest* guest) {
params->options->match_case ? *params->options->match_case : false;
}
- guest->Find(search_text, options, this);
+ guest->StartFinding(search_text, options, this);
return true;
}

Powered by Google App Engine
This is Rietveld 408576698