| Index: content/public/browser/browser_plugin_guest_delegate.cc
|
| diff --git a/content/public/browser/browser_plugin_guest_delegate.cc b/content/public/browser/browser_plugin_guest_delegate.cc
|
| index fd7dec4ccf8ca1960eba28be12715a1cea6b694a..bfa19e4c074177f955f959c52d2abd773bc44ae9 100644
|
| --- a/content/public/browser/browser_plugin_guest_delegate.cc
|
| +++ b/content/public/browser/browser_plugin_guest_delegate.cc
|
| @@ -20,13 +20,15 @@ WebContents* BrowserPluginGuestDelegate::GetOwnerWebContents() const {
|
| return nullptr;
|
| }
|
|
|
| -bool BrowserPluginGuestDelegate::Find(int request_id,
|
| - const base::string16& search_text,
|
| - const blink::WebFindOptions& options) {
|
| +bool BrowserPluginGuestDelegate::HandleFindForEmbedder(
|
| + int request_id,
|
| + const base::string16& search_text,
|
| + const blink::WebFindOptions& options) {
|
| return false;
|
| }
|
|
|
| -bool BrowserPluginGuestDelegate::StopFinding(StopFindAction action) {
|
| +bool BrowserPluginGuestDelegate::HandleStopFindingForEmbedder(
|
| + StopFindAction action) {
|
| return false;
|
| }
|
|
|
|
|