⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 176587 in webkit


Ignore:
Timestamp:
Nov 30, 2014, 2:48:30 PM (12 years ago)
Author:
andersca@apple.com
Message:

Switch over to the visited link store from the WebViewGroup
https://bugs.webkit.org/show_bug.cgi?id=139112

Reviewed by Sam Weinig.

  • WebView/WebView.mm:

(-[WebView _commonInitializationWithFrameName:groupName:]):
(-[WebView setGroupName:]):

Location:
trunk/Source/WebKit/mac
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/mac/ChangeLog

    r176586 r176587  
     12014-11-30  Anders Carlsson  <andersca@apple.com>
     2
     3        Switch over to the visited link store from the WebViewGroup
     4        https://bugs.webkit.org/show_bug.cgi?id=139112
     5
     6        Reviewed by Sam Weinig.
     7
     8        * WebView/WebView.mm:
     9        (-[WebView _commonInitializationWithFrameName:groupName:]):
     10        (-[WebView setGroupName:]):
     11
    1122014-11-30  Anders Carlsson  <andersca@apple.com>
    213
  • trunk/Source/WebKit/mac/WebView/WebView.mm

    r176586 r176587  
    942942    pageConfiguration.progressTrackerClient = new WebProgressTrackerClient(self);
    943943    pageConfiguration.userContentController = &_private->group->userContentController();
     944    pageConfiguration.visitedLinkStore = &_private->group->visitedLinkStore();
    944945    _private->page = new Page(pageConfiguration);
    945946
     
    61176118
    61186119    _private->page->setUserContentController(&_private->group->userContentController());
     6120    _private->page->setVisitedLinkStore(_private->group->visitedLinkStore());
    61196121    _private->page->setGroupName(groupName);
    61206122}
Note: See TracChangeset for help on using the changeset viewer.