RESOLVED FIXED 129061
Move to using std::unique_ptr for KeyboardEvent, ScriptExecutionContext::PendingException
https://bugs.webkit.org/show_bug.cgi?id=129061
Summary Move to using std::unique_ptr for KeyboardEvent, ScriptExecutionContext::Pend...
Zan Dobersek
Reported 2014-02-19 14:06:51 PST
Move to using std::unique_ptr for KeyboardEvent, ScriptExecutionContext::PendingException
Attachments
Patch (6.09 KB, patch)
2014-02-19 14:17 PST, Zan Dobersek
no flags
Patch (7.16 KB, patch)
2014-03-04 01:28 PST, Zan Dobersek
no flags
Patch (5.79 KB, patch)
2014-03-04 10:03 PST, Zan Dobersek
no flags
Zan Dobersek
Comment 1 2014-02-19 14:17:45 PST
Zan Dobersek
Comment 2 2014-02-20 01:51:44 PST
Comment on attachment 224675 [details] Patch Clearing flags on attachment: 224675 Committed r164422: <http://trac.webkit.org/changeset/164422>
Zan Dobersek
Comment 3 2014-02-20 01:51:51 PST
All reviewed patches have been landed. Closing bug.
Csaba Osztrogonác
Comment 4 2014-02-20 03:49:37 PST
(In reply to comment #2) > (From update of attachment 224675 [details]) > Clearing flags on attachment: 224675 > > Committed r164422: <http://trac.webkit.org/changeset/164422> It caused regressions on Apple Mac debug bots: http://build.webkit.org/builders/Apple%20Mavericks%20Debug%20WK1%20%28Tests%29/builds/3145
WebKit Commit Bot
Comment 5 2014-02-20 05:45:14 PST
Re-opened since this is blocked by bug 129102
Zan Dobersek
Comment 6 2014-03-04 01:28:08 PST
Eric Carlson
Comment 7 2014-03-04 09:09:41 PST
Comment on attachment 225755 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=225755&action=review > Source/WebCore/html/track/LoadableTextTrack.cpp:107 > void LoadableTextTrack::newCuesAvailable(TextTrackLoader* loader) > { > - ASSERT_UNUSED(loader, m_loader == loader); > + ASSERT_UNUSED(loader, m_loader.get() == loader); > > Vector<RefPtr<TextTrackCue>> newCues; > m_loader->getNewCues(newCues); Isn't this part of your text track patch?
Zan Dobersek
Comment 8 2014-03-04 10:00:13 PST
Comment on attachment 225755 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=225755&action=review >> Source/WebCore/html/track/LoadableTextTrack.cpp:107 >> m_loader->getNewCues(newCues); > > Isn't this part of your text track patch? It should be. This got included by accident.
Zan Dobersek
Comment 9 2014-03-04 10:03:30 PST
Zan Dobersek
Comment 10 2014-03-06 00:56:49 PST
Comment on attachment 225787 [details] Patch Clearing flags on attachment: 225787 Committed r165177: <http://trac.webkit.org/changeset/165177>
Zan Dobersek
Comment 11 2014-03-06 00:56:57 PST
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.