| 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 a7da3bd246f040f61657c0377410ca60949dc58f..6270ec1eb9d8b7ac8bf177b86b6dfde49c80c1d0 100644
|
| --- a/extensions/browser/api/web_view/web_view_internal_api.cc
|
| +++ b/extensions/browser/api/web_view/web_view_internal_api.cc
|
| @@ -244,7 +244,7 @@ bool WebViewInternalFindFunction::RunAsyncSafe(WebViewGuest* guest) {
|
| params->options->match_case ? *params->options->match_case : false;
|
| }
|
|
|
| - guest->StartFinding(search_text, options, this);
|
| + guest->StartFindInternal(search_text, options, this);
|
| return true;
|
| }
|
|
|
| @@ -275,7 +275,7 @@ bool WebViewInternalStopFindingFunction::RunAsyncSafe(WebViewGuest* guest) {
|
| action = content::STOP_FIND_ACTION_KEEP_SELECTION;
|
| }
|
|
|
| - guest->StopFinding(action);
|
| + guest->StopFindingInternal(action);
|
| return true;
|
| }
|
|
|
|
|