Title: [176587] trunk/Source/WebKit/mac
Revision
176587
Author
[email protected]
Date
2014-11-30 14:48:30 -0800 (Sun, 30 Nov 2014)

Log 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:]):

Modified Paths

Diff

Modified: trunk/Source/WebKit/mac/ChangeLog (176586 => 176587)


--- trunk/Source/WebKit/mac/ChangeLog	2014-11-30 22:45:19 UTC (rev 176586)
+++ trunk/Source/WebKit/mac/ChangeLog	2014-11-30 22:48:30 UTC (rev 176587)
@@ -1,5 +1,16 @@
 2014-11-30  Anders Carlsson  <[email protected]>
 
+        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:]):
+
+2014-11-30  Anders Carlsson  <[email protected]>
+
         Add WebVisitedLinkStore::removeVisitedLink and use it on iOS
         https://bugs.webkit.org/show_bug.cgi?id=139111
 

Modified: trunk/Source/WebKit/mac/WebView/WebView.mm (176586 => 176587)


--- trunk/Source/WebKit/mac/WebView/WebView.mm	2014-11-30 22:45:19 UTC (rev 176586)
+++ trunk/Source/WebKit/mac/WebView/WebView.mm	2014-11-30 22:48:30 UTC (rev 176587)
@@ -941,6 +941,7 @@
     pageConfiguration.loaderClientForMainFrame = new WebFrameLoaderClient;
     pageConfiguration.progressTrackerClient = new WebProgressTrackerClient(self);
     pageConfiguration.userContentController = &_private->group->userContentController();
+    pageConfiguration.visitedLinkStore = &_private->group->visitedLinkStore();
     _private->page = new Page(pageConfiguration);
 
     _private->page->setGroupName(groupName);
@@ -6116,6 +6117,7 @@
         return;
 
     _private->page->setUserContentController(&_private->group->userContentController());
+    _private->page->setVisitedLinkStore(_private->group->visitedLinkStore());
     _private->page->setGroupName(groupName);
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to