| Index: content/browser/web_contents/web_contents_impl.cc
|
| diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc
|
| index add65dbbb4a8134dc4580df79b873b6d67acd4ae..df827ed3755f69ae071d90e311f0be93bff31ed7 100644
|
| --- a/content/browser/web_contents/web_contents_impl.cc
|
| +++ b/content/browser/web_contents/web_contents_impl.cc
|
| @@ -1152,6 +1152,10 @@ base::TerminationStatus WebContentsImpl::GetCrashedStatus() const {
|
| return crashed_status_;
|
| }
|
|
|
| +int WebContentsImpl::GetCrashedErrorCode() const {
|
| + return crashed_error_code_;
|
| +}
|
| +
|
| bool WebContentsImpl::IsBeingDestroyed() const {
|
| return is_being_destroyed_;
|
| }
|
| @@ -4342,6 +4346,9 @@ void WebContentsImpl::OnIgnoredUIEvent() {
|
|
|
| void WebContentsImpl::RendererUnresponsive(
|
| RenderWidgetHostImpl* render_widget_host) {
|
| + FOR_EACH_OBSERVER(WebContentsObserver, observers_,
|
| + OnRendererUnresponsive(render_widget_host));
|
| +
|
| // Don't show hung renderer dialog for a swapped out RVH.
|
| if (render_widget_host != GetRenderViewHost()->GetWidget())
|
| return;
|
|
|