summaryrefslogtreecommitdiffstats
path: root/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.cpp
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2009-08-17 15:05:56 +0100
committerBen Murdoch <benm@google.com>2009-08-17 15:05:56 +0100
commit9e2ee40924101fa594b0b31d866f896154b47caa (patch)
tree82a6d4ddd973db5152e1d77de281fa79e4ea7e85 /WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.cpp
parentbc5fe496bf48aa18d6b41db4c43e20f890240de2 (diff)
downloadexternal_webkit-9e2ee40924101fa594b0b31d866f896154b47caa.zip
external_webkit-9e2ee40924101fa594b0b31d866f896154b47caa.tar.gz
external_webkit-9e2ee40924101fa594b0b31d866f896154b47caa.tar.bz2
Fix some WebKit/ compilation errors.
Diffstat (limited to 'WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.cpp')
-rw-r--r--WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.cpp b/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.cpp
index c69d5e7..14e34fd 100644
--- a/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.cpp
+++ b/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.cpp
@@ -647,7 +647,7 @@ bool FrameLoaderClientAndroid::shouldFallBack(const ResourceError&) {
bool FrameLoaderClientAndroid::canHandleRequest(const ResourceRequest& request) const {
ASSERT(m_frame);
// Don't allow hijacking of intrapage navigation
- if (WebCore::equalIgnoringRef(request.url(), m_frame->loader()->url()))
+ if (WebCore::equalIgnoringFragmentIdentifier(request.url(), m_frame->loader()->url()))
return true;
// Don't allow hijacking of iframe urls that are http or https
@@ -1056,7 +1056,7 @@ void FrameLoaderClientAndroid::didAddIconForPageUrl(const String& pageUrl) {
// to be read from disk.
registerForIconNotification(false);
KURL u(pageUrl);
- if (equalIgnoringRef(u, m_frame->loader()->url())) {
+ if (equalIgnoringFragmentIdentifier(u, m_frame->loader()->url())) {
dispatchDidReceiveIcon();
}
}