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

Side by Side Diff: content/shell/shell_content_renderer_client.cc

Issue 8142032: Add error description to the DidFailProvisionalLoad callback. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: rebase 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/shell/shell_content_renderer_client.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/shell/shell_content_renderer_client.h" 5 #include "content/shell/shell_content_renderer_client.h"
6 6
7 #include "v8/include/v8.h" 7 #include "v8/include/v8.h"
8 8
9 namespace content { 9 namespace content {
10 10
(...skipping 23 matching lines...) Expand all
34 const WebKit::WebPluginParams& params, 34 const WebKit::WebPluginParams& params,
35 WebKit::WebPlugin** plugin) { 35 WebKit::WebPlugin** plugin) {
36 return false; 36 return false;
37 } 37 }
38 38
39 bool ShellContentRendererClient::HasErrorPage(int http_status_code, 39 bool ShellContentRendererClient::HasErrorPage(int http_status_code,
40 std::string* error_domain) { 40 std::string* error_domain) {
41 return false; 41 return false;
42 } 42 }
43 43
44 std::string ShellContentRendererClient::GetNavigationErrorHtml( 44 void ShellContentRendererClient::GetNavigationErrorStrings(
45 const WebKit::WebURLRequest& failed_request, 45 const WebKit::WebURLRequest& failed_request,
46 const WebKit::WebURLError& error) { 46 const WebKit::WebURLError& error,
47 return std::string(); 47 std::string* error_html,
48 string16* error_description) {
48 } 49 }
49 50
50 bool ShellContentRendererClient::RunIdleHandlerWhenWidgetsHidden() { 51 bool ShellContentRendererClient::RunIdleHandlerWhenWidgetsHidden() {
51 return true; 52 return true;
52 } 53 }
53 54
54 bool ShellContentRendererClient::AllowPopup(const GURL& creator) { 55 bool ShellContentRendererClient::AllowPopup(const GURL& creator) {
55 return false; 56 return false;
56 } 57 }
57 58
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 const GURL& first_party_for_cookies, 115 const GURL& first_party_for_cookies,
115 const std::string& value) { 116 const std::string& value) {
116 return false; 117 return false;
117 } 118 }
118 119
119 bool ShellContentRendererClient::IsProtocolSupportedForMedia(const GURL& url) { 120 bool ShellContentRendererClient::IsProtocolSupportedForMedia(const GURL& url) {
120 return false; 121 return false;
121 } 122 }
122 123
123 } // namespace content 124 } // namespace content
OLDNEW
« no previous file with comments | « content/shell/shell_content_renderer_client.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698