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

Unified Diff: content/public/browser/browser_plugin_guest_delegate.cc

Issue 2808923003: Revert of Enable find-in-page across GuestViews. (Closed)
Patch Set: Fixed patch conflicts. Created 3 years, 8 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: 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 663a7fe98969f1cecf4c0d9dc17ec3e04d31244c..8d691ef8ceb8e996a205d39f2f80989c2802c336 100644
--- a/content/public/browser/browser_plugin_guest_delegate.cc
+++ b/content/public/browser/browser_plugin_guest_delegate.cc
@@ -20,6 +20,18 @@ WebContents* BrowserPluginGuestDelegate::GetOwnerWebContents() const {
return nullptr;
}
+bool BrowserPluginGuestDelegate::HandleFindForEmbedder(
+ int request_id,
+ const base::string16& search_text,
+ const blink::WebFindOptions& options) {
+ return false;
+}
+
+bool BrowserPluginGuestDelegate::HandleStopFindingForEmbedder(
+ StopFindAction action) {
+ return false;
+}
+
bool BrowserPluginGuestDelegate::CanUseCrossProcessFrames() {
return true;
}
« no previous file with comments | « content/public/browser/browser_plugin_guest_delegate.h ('k') | content/test/data/find_in_embedded_pdf_page.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698