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

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

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.h
diff --git a/content/public/browser/browser_plugin_guest_delegate.h b/content/public/browser/browser_plugin_guest_delegate.h
index aabe27bd4cd9ba07439099e9980ba79c5c0034c5..4dd1a4cd732925d2cb2f18a6f4e31aa032101b5b 100644
--- a/content/public/browser/browser_plugin_guest_delegate.h
+++ b/content/public/browser/browser_plugin_guest_delegate.h
@@ -78,10 +78,10 @@ class CONTENT_EXPORT BrowserPluginGuestDelegate {
// 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);
- virtual bool StopFinding(StopFindAction action);
+ virtual bool HandleFindForEmbedder(int request_id,
+ const base::string16& search_text,
+ const blink::WebFindOptions& options);
+ virtual bool HandleStopFindingForEmbedder(StopFindAction action);
// Provides the delegate with an interface with which to communicate with the
// content module.
« no previous file with comments | « content/browser/browser_plugin/browser_plugin_guest.cc ('k') | content/public/browser/browser_plugin_guest_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698