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

Unified Diff: content/renderer/render_view.cc

Issue 8142032: Add error description to the DidFailProvisionalLoad callback. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: update commit message with BUG and TEST fields Created 9 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/renderer/render_view.cc
diff --git a/content/renderer/render_view.cc b/content/renderer/render_view.cc
index eadc4a4bf47f2aac6581e112efe7fc93903dffea..b9138fa20938668676b44f84934648d7ca7a9a4a 100644
--- a/content/renderer/render_view.cc
+++ b/content/renderer/render_view.cc
@@ -1259,10 +1259,18 @@ void RenderView::LoadNavigationErrorPage(WebFrame* frame,
const WebURLError& error,
const std::string& html,
bool replace) {
- std::string alt_html = !html.empty() ? html :
- content::GetContentClient()->renderer()->GetNavigationErrorHtml(
- failed_request, error);
- frame->loadHTMLString(alt_html,
+ std::string alt_html;
+ const std::string* error_html;
+
+ if (!html.empty()) {
+ error_html = &html;
+ } else {
+ content::GetContentClient()->renderer()->GetNavigationErrorStrings(
+ failed_request, error, &alt_html, NULL);
+ error_html = &alt_html;
+ }
+
+ frame->loadHTMLString(*error_html,
GURL(chrome::kUnreachableWebDataURL),
error.unreachableURL,
replace);
@@ -2352,9 +2360,20 @@ void RenderView::didFailProvisionalLoad(WebFrame* frame,
bool show_repost_interstitial =
(error.reason == net::ERR_CACHE_MISS &&
EqualsASCII(failed_request.httpMethod(), "POST"));
+
+ ViewHostMsg_DidFailProvisionalLoadWithError_Params params;
+ params.frame_id = frame->identifier();
+ params.is_main_frame = !frame->parent();
+ params.error_code = error.reason;
+ content::GetContentClient()->renderer()->GetNavigationErrorStrings(
+ failed_request,
+ error,
+ NULL,
+ &params.error_description);
+ params.url = error.unreachableURL;
+ params.showing_repost_interstitial = show_repost_interstitial;
Send(new ViewHostMsg_DidFailProvisionalLoadWithError(
- routing_id_, frame->identifier(), !frame->parent(), error.reason,
- error.unreachableURL, show_repost_interstitial));
+ routing_id_, params));
// Don't display an error page if this is simply a cancelled load. Aside
// from being dumb, WebCore doesn't expect it and it will cause a crash.

Powered by Google App Engine
This is Rietveld 408576698