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

Unified Diff: extensions/browser/guest_view/web_view/web_view_guest.h

Issue 901833002: Allow MimeHandlerViewGuest to be notified of StopFinding events. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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: extensions/browser/guest_view/web_view/web_view_guest.h
diff --git a/extensions/browser/guest_view/web_view/web_view_guest.h b/extensions/browser/guest_view/web_view/web_view_guest.h
index 35daea016aa16780b062f51aae61ef42b6c0a68c..106dadd4c9456bc730a82e62fd41eef642a3c76c 100644
--- a/extensions/browser/guest_view/web_view/web_view_guest.h
+++ b/extensions/browser/guest_view/web_view/web_view_guest.h
@@ -169,12 +169,13 @@ class WebViewGuest : public GuestView<WebViewGuest>,
double zoom() const { return current_zoom_factor_; }
// Begin or continue a find request.
- void StartFinding(const base::string16& search_text,
- const blink::WebFindOptions& options,
- scoped_refptr<WebViewInternalFindFunction> find_function);
+ void StartFindInternal(
+ const base::string16& search_text,
+ const blink::WebFindOptions& options,
+ scoped_refptr<WebViewInternalFindFunction> find_function);
// Conclude a find request to clear highlighting.
- void StopFinding(content::StopFindAction);
+ void StopFindingInternal(content::StopFindAction);
// If possible, navigate the guest to |relative_index| entries away from the
// current navigation entry. Returns true on success.

Powered by Google App Engine
This is Rietveld 408576698