WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
48620
[Qt] WebKit2 needs to support historyitem, QWKHistoryItem
https://bugs.webkit.org/show_bug.cgi?id=48620
Summary
[Qt] WebKit2 needs to support historyitem, QWKHistoryItem
Juha Savolainen
Reported
2010-10-29 01:40:00 PDT
The QWKHistoryItem class represents one item in the history of a QWKPage.
Attachments
Implementation of QWKHistoryItem
(4.80 KB, patch)
2010-10-29 01:45 PDT
,
Juha Savolainen
no flags
Details
Formatted Diff
Diff
Fixed patch
(5.08 KB, patch)
2010-11-01 06:16 PDT
,
Juha Savolainen
no flags
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Juha Savolainen
Comment 1
2010-10-29 01:45:38 PDT
Created
attachment 72299
[details]
Implementation of QWKHistoryItem
Kenneth Rohde Christiansen
Comment 2
2010-10-30 02:11:17 PDT
Comment on
attachment 72299
[details]
Implementation of QWKHistoryItem View in context:
https://bugs.webkit.org/attachment.cgi?id=72299&action=review
> WebKit2/UIProcess/API/qt/qwkhistory.cpp:46 > +QWKHistoryItemPrivate::~QWKHistoryItemPrivate() > +{ > +}
Why not just use the default destructor.
> WebKit2/UIProcess/API/qt/qwkhistory.cpp:59 > +QString QWKHistoryItem::title() const > +{ > + return WKStringCopyQString(WKBackForwardListItemCopyTitle(d->m_backForwardListItem)); > +}
I think that you are leaking here. As you are not freeing the WKString. Do something like: WKRetainPtr<WKString> string = WKBackForwardListItemCopyTitle(d->m_backForwardListItem); return WKStringCopyQString(string); When the WKRetainPtr goes out of scope, it will free the string.
> WebKit2/UIProcess/API/qt/qwkhistory_p.h:43 > + WKBackForwardListItemRef m_backForwardListItem;
Don't you need to ref this one? ie. change this into a WKRetainPtr<WKBackForwardListItemRef>?
Juha Savolainen
Comment 3
2010-11-01 05:36:52 PDT
(In reply to
comment #2
)
> (From update of
attachment 72299
[details]
)
> > WebKit2/UIProcess/API/qt/qwkhistory.cpp:59 > > +QString QWKHistoryItem::title() const > > +{ > > + return WKStringCopyQString(WKBackForwardListItemCopyTitle(d->m_backForwardListItem)); > > +} > > I think that you are leaking here. As you are not freeing the WKString.
Also I noticed that I forgot to do checkings: if (!d->m_backForwardListItem) return QString();
Juha Savolainen
Comment 4
2010-11-01 06:16:35 PDT
Created
attachment 72501
[details]
Fixed patch Fixed patch.
WebKit Commit Bot
Comment 5
2010-11-01 18:14:15 PDT
The commit-queue encountered the following flaky tests while processing
attachment 72501
[details]
: media/event-attributes.html Please file bugs against the tests. These tests were authored by
eric.carlson@apple.com
. The commit-queue is continuing to process your patch.
WebKit Commit Bot
Comment 6
2010-11-01 18:15:29 PDT
Comment on
attachment 72501
[details]
Fixed patch Clearing flags on attachment: 72501 Committed
r71089
: <
http://trac.webkit.org/changeset/71089
>
WebKit Commit Bot
Comment 7
2010-11-01 18:15:35 PDT
All reviewed patches have been landed. Closing bug.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug