summaryrefslogtreecommitdiffstats
path: root/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.cpp
diff options
context:
space:
mode:
authorLeon Scroggins III <scroggo@google.com>2010-10-05 06:43:54 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-10-05 06:43:54 -0700
commit1d88f7c1752437240899bb62df4e508b91f396f6 (patch)
tree2f1f28d52252448451a5181cf40a416964a27bae /WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.cpp
parentbd2883826a01ef33a513566c75923d6ddec710ad (diff)
parent85248e3a39ad1010d9df785fc0d82162fe7d2d27 (diff)
downloadexternal_webkit-1d88f7c1752437240899bb62df4e508b91f396f6.zip
external_webkit-1d88f7c1752437240899bb62df4e508b91f396f6.tar.gz
external_webkit-1d88f7c1752437240899bb62df4e508b91f396f6.tar.bz2
Merge "When a page fails to load, notify that the page is finished"
Diffstat (limited to 'WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.cpp')
-rw-r--r--WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.cpp b/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.cpp
index 997c421..b756dc3 100644
--- a/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.cpp
+++ b/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.cpp
@@ -378,6 +378,9 @@ void FrameLoaderClientAndroid::dispatchDidFailProvisionalLoad(const ResourceErro
// Delete the asset.
delete a;
+
+ // Report that the load is finished, since it failed.
+ didFinishLoad();
}
void FrameLoaderClientAndroid::dispatchDidFailLoad(const ResourceError&) {