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

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

Issue 1392343002: Reduce the public method footprint of GuestViewBase and derived types. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments. Reverted reordering in cc files. Created 5 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: 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;
}

Powered by Google App Engine
This is Rietveld 408576698