RESOLVED FIXED 139065
Add a Page::setVisitedLinkStore member function
https://bugs.webkit.org/show_bug.cgi?id=139065
Summary Add a Page::setVisitedLinkStore member function
Anders Carlsson
Reported 2014-11-26 10:28:29 PST
Add a Page::setVisitedLinkStore member function
Attachments
Patch (3.03 KB, patch)
2014-11-26 10:29 PST, Anders Carlsson
koivisto: review+
commit-queue: commit-queue-
Anders Carlsson
Comment 1 2014-11-26 10:29:00 PST
Antti Koivisto
Comment 2 2014-11-26 10:32:11 PST
Comment on attachment 242233 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=242233&action=review > Source/WebCore/page/Page.cpp:1648 > +void Page::setVisitedLinkStore(PassRefPtr<VisitedLinkStore> visitedLinkStore) > +{ > + if (m_visitedLinkStore) > + m_visitedLinkStore->removePage(*this); > + > + m_visitedLinkStore = visitedLinkStore; > + > + if (m_visitedLinkStore) > + m_visitedLinkStore->addPage(*this); Do we really want to be to set a null store?
WebKit Commit Bot
Comment 3 2014-11-26 11:27:26 PST
Comment on attachment 242233 [details] Patch Rejecting attachment 242233 [details] from commit-queue. Failed to run "['/Volumes/Data/EWS/WebKit/Tools/Scripts/webkit-patch', '--status-host=webkit-queues.appspot.com', '--bot-id=webkit-cq-02', 'land-attachment', '--force-clean', '--non-interactive', '--parent-command=commit-queue', 242233, '--port=mac']" exit_code: 2 cwd: /Volumes/Data/EWS/WebKit Last 500 characters of output: ', 'dcommit', '--rmdir']" exit_code: 139 cwd: /Volumes/Data/EWS/WebKit Committing to http://svn.webkit.org/repository/webkit/trunk ... Authentication realm: <http://svn.webkit.org:80> Mac OS Forge Password for 'commit-queue@webkit.org': Authentication realm: <http://svn.webkit.org:80> Mac OS Forge Username: error: git-svn died of signal 11 Failed to run "['git', 'svn', 'dcommit', '--rmdir']" exit_code: 139 cwd: /Volumes/Data/EWS/WebKit Updating OpenSource Current branch master is up to date. Full output: http://webkit-queues.appspot.com/results/5904429609910272
Anders Carlsson
Comment 4 2014-11-27 09:58:24 PST
Note You need to log in before you can comment on or make changes to this bug.