summaryrefslogtreecommitdiffstats
path: root/WebKit
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2010-10-25 10:41:48 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-10-25 10:41:48 -0700
commit6d1b48cf3ed27adf6c0c9b6552e667865d818abc (patch)
tree47dd5b613a490dbb031872d8d67d5d442a1317cc /WebKit
parent6f97ad3a73e748b7f964e0108fdd1b41b2f8616d (diff)
parent39033019e6eb8d50b988d5b6d13f54473b62f4ff (diff)
downloadexternal_webkit-6d1b48cf3ed27adf6c0c9b6552e667865d818abc.zip
external_webkit-6d1b48cf3ed27adf6c0c9b6552e667865d818abc.tar.gz
external_webkit-6d1b48cf3ed27adf6c0c9b6552e667865d818abc.tar.bz2
Merge "Remove unused dispatchDidLoadResourceByXMLHttpRequest"
Diffstat (limited to 'WebKit')
-rw-r--r--WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.cpp4
-rw-r--r--WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.h1
2 files changed, 0 insertions, 5 deletions
diff --git a/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.cpp b/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.cpp
index 3268677..a796084 100644
--- a/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.cpp
+++ b/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.cpp
@@ -201,10 +201,6 @@ bool FrameLoaderClientAndroid::dispatchDidLoadResourceFromMemoryCache(DocumentLo
return false;
}
-void FrameLoaderClientAndroid::dispatchDidLoadResourceByXMLHttpRequest(unsigned long identifier, const ScriptString&) {
- return;
-}
-
void FrameLoaderClientAndroid::dispatchDidHandleOnloadEvents() {
}
diff --git a/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.h b/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.h
index eb0c26e..b40f645 100644
--- a/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.h
+++ b/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.h
@@ -76,7 +76,6 @@ namespace android {
virtual void dispatchDidFinishLoading(DocumentLoader*, unsigned long identifier);
virtual void dispatchDidFailLoading(DocumentLoader*, unsigned long identifier, const ResourceError&);
virtual bool dispatchDidLoadResourceFromMemoryCache(DocumentLoader*, const ResourceRequest&, const ResourceResponse&, int length);
- virtual void dispatchDidLoadResourceByXMLHttpRequest(unsigned long identifier, const ScriptString&);
virtual void dispatchDidHandleOnloadEvents();
virtual void dispatchDidReceiveServerRedirectForProvisionalLoad();