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

Unified Diff: webkit/tools/test_shell/test_webview_delegate.cc

Issue 160578: Move alternate 404 error page loading out of WebFrame and into RenderView.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 4 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: webkit/tools/test_shell/test_webview_delegate.cc
===================================================================
--- webkit/tools/test_shell/test_webview_delegate.cc (revision 22283)
+++ webkit/tools/test_shell/test_webview_delegate.cc (working copy)
@@ -217,7 +217,7 @@
}
void TestWebViewDelegate::AssignIdentifierToRequest(
- WebView* webview,
+ WebFrame* webframe,
uint32 identifier,
const WebURLRequest& request) {
if (shell_->ShouldDumpResourceLoadCallbacks())
@@ -229,7 +229,7 @@
return it != resource_identifier_map_.end() ? it->second : "<unknown>";
}
-void TestWebViewDelegate::WillSendRequest(WebView* webview,
+void TestWebViewDelegate::WillSendRequest(WebFrame* webframe,
uint32 identifier,
WebURLRequest* request) {
GURL url = request->url();
@@ -260,7 +260,7 @@
request->setURL(GURL(TestShell::RewriteLocalUrl(request_url)));
}
-void TestWebViewDelegate::DidFinishLoading(WebView* webview,
+void TestWebViewDelegate::DidFinishLoading(WebFrame* webframe,
uint32 identifier) {
TRACE_EVENT_END("url.load", identifier, "");
if (shell_->ShouldDumpResourceLoadCallbacks()) {
@@ -271,7 +271,7 @@
resource_identifier_map_.erase(identifier);
}
-void TestWebViewDelegate::DidFailLoadingWithError(WebView* webview,
+void TestWebViewDelegate::DidFailLoadingWithError(WebFrame* webframe,
uint32 identifier,
const WebURLError& error) {
if (shell_->ShouldDumpResourceLoadCallbacks()) {

Powered by Google App Engine
This is Rietveld 408576698