Index: content/public/browser/browser_plugin_guest_delegate.h |
diff --git a/content/public/browser/browser_plugin_guest_delegate.h b/content/public/browser/browser_plugin_guest_delegate.h |
index 0b7372f52bbc73f5647d23485463f541ecda0247..cca9bdc527752416a92b94603b8fbb4ff76d627d 100644 |
--- a/content/public/browser/browser_plugin_guest_delegate.h |
+++ b/content/public/browser/browser_plugin_guest_delegate.h |
@@ -66,6 +66,13 @@ class CONTENT_EXPORT BrowserPluginGuestDelegate { |
typedef base::Callback<void()> DestructionCallback; |
virtual void RegisterDestructionCallback( |
const DestructionCallback& callback) {} |
+ |
+ // Find the given |search_text| in the page. Returns true if the find request |
+ // is handled by this browser plugin guest delegate. |
+ virtual bool Find(int request_id, |
+ const base::string16& search_text, |
+ const blink::WebFindOptions& options, |
+ bool is_full_page_plugin); |
}; |
} // namespace content |