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

Unified Diff: chrome/browser/guestview/webview/webview_find_helper.cc

Issue 237533008: Refactor GuestView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Introduce template class GuestView. Created 6 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: chrome/browser/guestview/webview/webview_find_helper.cc
diff --git a/chrome/browser/guestview/webview/webview_find_helper.cc b/chrome/browser/guestview/webview/webview_find_helper.cc
index d636a78df1297cbb315bbaf52d39d952ae5a62e5..a98f6c804c0a1ace4d5164df609c2d1c672320ba 100644
--- a/chrome/browser/guestview/webview/webview_find_helper.cc
+++ b/chrome/browser/guestview/webview/webview_find_helper.cc
@@ -36,8 +36,8 @@ void WebviewFindHelper::DispatchFindUpdateEvent(bool canceled,
args->SetBoolean(webview::kFindCanceled, canceled);
args->SetBoolean(webview::kFindFinalUpdate, final_update);
DCHECK(webview_guest_);
- webview_guest_->DispatchEvent(new GuestView::Event(webview::kEventFindReply,
- args.Pass()));
+ webview_guest_->DispatchEvent(
+ new GuestViewBase::Event(webview::kEventFindReply, args.Pass()));
}
void WebviewFindHelper::EndFindSession(int session_request_id, bool canceled) {

Powered by Google App Engine
This is Rietveld 408576698