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

Unified Diff: content/browser/frame_host/interstitial_page_impl.cc

Issue 2112923002: Fix crash when destroying a RenderWidgetHost that holds the pointer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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/browser/frame_host/interstitial_page_impl.cc
diff --git a/content/browser/frame_host/interstitial_page_impl.cc b/content/browser/frame_host/interstitial_page_impl.cc
index 036f3ea83dfeef00e0cfb1b00977b31ffbb91307..853bcb2faa254a47cc97b770c4b2f18da1fcae85 100644
--- a/content/browser/frame_host/interstitial_page_impl.cc
+++ b/content/browser/frame_host/interstitial_page_impl.cc
@@ -465,6 +465,11 @@ void InterstitialPageImpl::SelectAll() {
RecordAction(base::UserMetricsAction("SelectAll"));
}
+bool InterstitialPageImpl::HasMouseLock(
+ RenderWidgetHostImpl* render_widget_host) {
+ return false;
+}
+
RenderViewHostDelegateView* InterstitialPageImpl::GetDelegateView() {
return rvh_delegate_view_.get();
}

Powered by Google App Engine
This is Rietveld 408576698