summaryrefslogtreecommitdiffstats
path: root/Source/WebKit/android/jni/WebHistory.cpp
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2011-05-24 16:12:30 +0100
committerBen Murdoch <benm@google.com>2011-06-02 10:37:18 +0100
commitd937470c29d31833299da3bb47599e43db82852b (patch)
tree0de35aa2c6de41d02ac7324eee75d74a99685b00 /Source/WebKit/android/jni/WebHistory.cpp
parent192c49d02eeb9cf618784ffef9639f8df38e3c16 (diff)
downloadexternal_webkit-d937470c29d31833299da3bb47599e43db82852b.zip
external_webkit-d937470c29d31833299da3bb47599e43db82852b.tar.gz
external_webkit-d937470c29d31833299da3bb47599e43db82852b.tar.bz2
Merge WebKit at r80534: Fix IconDatabase uses.
WebCore::iconDatabase() now returns a reference rather than a pointer. Update our calls to reflect this. See http://trac.webkit.org/changeset/80299 Change-Id: Iebf2f199fd8913e227572753cee2cf3a2e380985
Diffstat (limited to 'Source/WebKit/android/jni/WebHistory.cpp')
-rw-r--r--Source/WebKit/android/jni/WebHistory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WebKit/android/jni/WebHistory.cpp b/Source/WebKit/android/jni/WebHistory.cpp
index 97ce23b..dd68a4e 100644
--- a/Source/WebKit/android/jni/WebHistory.cpp
+++ b/Source/WebKit/android/jni/WebHistory.cpp
@@ -291,7 +291,7 @@ void WebHistoryItem::updateHistoryItem(WebCore::HistoryItem* item) {
int refIndex = url.reverseFind('#');
url = url.substring(0, refIndex);
}
- WebCore::Image* icon = WebCore::iconDatabase()->iconForPageURL(url,
+ WebCore::Image* icon = WebCore::iconDatabase().iconForPageURL(url,
WebCore::IntSize(16, 16));
if (icon)