summaryrefslogtreecommitdiffstats
path: root/WebKit
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2009-11-26 14:53:09 +0000
committerBen Murdoch <benm@google.com>2009-12-03 11:37:33 +0000
commit970b5d950cbc4b5089ff8bb091d896ddf58ad83a (patch)
tree3f99b324eb77961b4b3f6f31a41b8d7997031f0a /WebKit
parented3dcbaa89ede50bb054f63aa1847ae6240fa70d (diff)
downloadexternal_webkit-970b5d950cbc4b5089ff8bb091d896ddf58ad83a.zip
external_webkit-970b5d950cbc4b5089ff8bb091d896ddf58ad83a.tar.gz
external_webkit-970b5d950cbc4b5089ff8bb091d896ddf58ad83a.tar.bz2
Android History unforking pt3: Changes to the notifyHIstoryItemChanged function and the places it is used.
This needs to be upstreamed to webkit.org. Change-Id: I5dc4e40939448e0b1dfcd6393082036fc8174aa9
Diffstat (limited to 'WebKit')
-rw-r--r--WebKit/mac/History/WebHistoryItem.mm2
-rw-r--r--WebKit/mac/History/WebHistoryItemInternal.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/WebKit/mac/History/WebHistoryItem.mm b/WebKit/mac/History/WebHistoryItem.mm
index 3ed4e1f..91bc610 100644
--- a/WebKit/mac/History/WebHistoryItem.mm
+++ b/WebKit/mac/History/WebHistoryItem.mm
@@ -84,7 +84,7 @@ static HistoryItemMap& historyItemWrappers()
return historyItemWrappers;
}
-void WKNotifyHistoryItemChanged()
+void WKNotifyHistoryItemChanged(HistoryItem*)
{
[[NSNotificationCenter defaultCenter]
postNotificationName:WebHistoryItemChangedNotification object:nil userInfo:nil];
diff --git a/WebKit/mac/History/WebHistoryItemInternal.h b/WebKit/mac/History/WebHistoryItemInternal.h
index 787eb05..d324682 100644
--- a/WebKit/mac/History/WebHistoryItemInternal.h
+++ b/WebKit/mac/History/WebHistoryItemInternal.h
@@ -37,7 +37,7 @@ namespace WebCore {
WebCore::HistoryItem* core(WebHistoryItem *item);
WebHistoryItem *kit(WebCore::HistoryItem* item);
-extern void WKNotifyHistoryItemChanged();
+extern void WKNotifyHistoryItemChanged(WebCore::HistoryItem*);
@interface WebHistoryItem (WebInternal)