<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[188891] trunk/Source/WebKit2</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/188891">188891</a></dd>
<dt>Author</dt> <dd>andersca@apple.com</dd>
<dt>Date</dt> <dd>2015-08-24 15:45:17 -0700 (Mon, 24 Aug 2015)</dd>
</dl>

<h3>Log Message</h3>
<pre>Rename _WKVisitedLinkProvider to _WKVisitedLinkStore for consistency
https://bugs.webkit.org/show_bug.cgi?id=148398

Reviewed by Tim Horton.

We'd like to call the abstract classes providers and the concrete classes stores in WebKit. Begin by renaming
_WKVisitedLinkProvider to _WKVisitedLinkStore, but keep the former around as a deprecated class.

* Shared/API/Cocoa/WebKitPrivate.h:
* Shared/Cocoa/APIObject.mm:
(API::Object::newObject):
* UIProcess/API/Cocoa/WKWebView.mm:
(-[WKWebView initWithFrame:configuration:]):
* UIProcess/API/Cocoa/WKWebViewConfiguration.mm:
(-[WKWebViewConfiguration copyWithZone:]):
(-[WKWebViewConfiguration _visitedLinkStore]):
(-[WKWebViewConfiguration _setVisitedLinkStore:]):
(-[WKWebViewConfiguration _visitedLinkProvider]):
(-[WKWebViewConfiguration _setVisitedLinkProvider:]):
(-[WKWebViewConfiguration _validate]):
* UIProcess/API/Cocoa/WKWebViewConfigurationPrivate.h:
* UIProcess/API/Cocoa/_WKVisitedLinkProvider.h:
* UIProcess/API/Cocoa/_WKVisitedLinkProvider.mm:
(-[_WKVisitedLinkProvider init]): Deleted.
(-[_WKVisitedLinkProvider dealloc]): Deleted.
(-[_WKVisitedLinkProvider addVisitedLinkWithURL:]): Deleted.
(-[_WKVisitedLinkProvider removeAll]): Deleted.
(-[_WKVisitedLinkProvider _apiObject]): Deleted.
* UIProcess/API/Cocoa/_WKVisitedLinkStore.h: Copied from Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkProvider.h.
* UIProcess/API/Cocoa/_WKVisitedLinkStore.mm: Copied from Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkProvider.mm.
(-[_WKVisitedLinkStore init]):
(-[_WKVisitedLinkStore dealloc]):
(-[_WKVisitedLinkStore addVisitedLinkWithURL:]):
(-[_WKVisitedLinkStore removeAll]):
(-[_WKVisitedLinkStore _apiObject]):
* UIProcess/API/Cocoa/_WKVisitedLinkStoreInternal.h: Renamed from Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkProviderInternal.h.
(WebKit::wrapper):
* WebKit2.xcodeproj/project.pbxproj:</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkSourceWebKit2ChangeLog">trunk/Source/WebKit2/ChangeLog</a></li>
<li><a href="#trunkSourceWebKit2SharedAPICocoaWebKitPrivateh">trunk/Source/WebKit2/Shared/API/Cocoa/WebKitPrivate.h</a></li>
<li><a href="#trunkSourceWebKit2SharedCocoaAPIObjectmm">trunk/Source/WebKit2/Shared/Cocoa/APIObject.mm</a></li>
<li><a href="#trunkSourceWebKit2UIProcessAPICocoaWKWebViewmm">trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm</a></li>
<li><a href="#trunkSourceWebKit2UIProcessAPICocoaWKWebViewConfigurationmm">trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebViewConfiguration.mm</a></li>
<li><a href="#trunkSourceWebKit2UIProcessAPICocoaWKWebViewConfigurationPrivateh">trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebViewConfigurationPrivate.h</a></li>
<li><a href="#trunkSourceWebKit2UIProcessAPICocoa_WKVisitedLinkProviderh">trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkProvider.h</a></li>
<li><a href="#trunkSourceWebKit2UIProcessAPICocoa_WKVisitedLinkProvidermm">trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkProvider.mm</a></li>
<li><a href="#trunkSourceWebKit2WebKit2xcodeprojprojectpbxproj">trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunkSourceWebKit2UIProcessAPICocoa_WKVisitedLinkStoreh">trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkStore.h</a></li>
<li><a href="#trunkSourceWebKit2UIProcessAPICocoa_WKVisitedLinkStoremm">trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkStore.mm</a></li>
<li><a href="#trunkSourceWebKit2UIProcessAPICocoa_WKVisitedLinkStoreInternalh">trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkStoreInternal.h</a></li>
</ul>

<h3>Removed Paths</h3>
<ul>
<li><a href="#trunkSourceWebKit2UIProcessAPICocoa_WKVisitedLinkProviderInternalh">trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkProviderInternal.h</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkSourceWebKit2ChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/ChangeLog (188890 => 188891)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/ChangeLog        2015-08-24 22:42:54 UTC (rev 188890)
+++ trunk/Source/WebKit2/ChangeLog        2015-08-24 22:45:17 UTC (rev 188891)
</span><span class="lines">@@ -1,3 +1,44 @@
</span><ins>+2015-08-24  Anders Carlsson  &lt;andersca@apple.com&gt;
+
+        Rename _WKVisitedLinkProvider to _WKVisitedLinkStore for consistency
+        https://bugs.webkit.org/show_bug.cgi?id=148398
+
+        Reviewed by Tim Horton.
+
+        We'd like to call the abstract classes providers and the concrete classes stores in WebKit. Begin by renaming
+        _WKVisitedLinkProvider to _WKVisitedLinkStore, but keep the former around as a deprecated class.
+
+        * Shared/API/Cocoa/WebKitPrivate.h:
+        * Shared/Cocoa/APIObject.mm:
+        (API::Object::newObject):
+        * UIProcess/API/Cocoa/WKWebView.mm:
+        (-[WKWebView initWithFrame:configuration:]):
+        * UIProcess/API/Cocoa/WKWebViewConfiguration.mm:
+        (-[WKWebViewConfiguration copyWithZone:]):
+        (-[WKWebViewConfiguration _visitedLinkStore]):
+        (-[WKWebViewConfiguration _setVisitedLinkStore:]):
+        (-[WKWebViewConfiguration _visitedLinkProvider]):
+        (-[WKWebViewConfiguration _setVisitedLinkProvider:]):
+        (-[WKWebViewConfiguration _validate]):
+        * UIProcess/API/Cocoa/WKWebViewConfigurationPrivate.h:
+        * UIProcess/API/Cocoa/_WKVisitedLinkProvider.h:
+        * UIProcess/API/Cocoa/_WKVisitedLinkProvider.mm:
+        (-[_WKVisitedLinkProvider init]): Deleted.
+        (-[_WKVisitedLinkProvider dealloc]): Deleted.
+        (-[_WKVisitedLinkProvider addVisitedLinkWithURL:]): Deleted.
+        (-[_WKVisitedLinkProvider removeAll]): Deleted.
+        (-[_WKVisitedLinkProvider _apiObject]): Deleted.
+        * UIProcess/API/Cocoa/_WKVisitedLinkStore.h: Copied from Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkProvider.h.
+        * UIProcess/API/Cocoa/_WKVisitedLinkStore.mm: Copied from Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkProvider.mm.
+        (-[_WKVisitedLinkStore init]):
+        (-[_WKVisitedLinkStore dealloc]):
+        (-[_WKVisitedLinkStore addVisitedLinkWithURL:]):
+        (-[_WKVisitedLinkStore removeAll]):
+        (-[_WKVisitedLinkStore _apiObject]):
+        * UIProcess/API/Cocoa/_WKVisitedLinkStoreInternal.h: Renamed from Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkProviderInternal.h.
+        (WebKit::wrapper):
+        * WebKit2.xcodeproj/project.pbxproj:
+
</ins><span class="cx"> 2015-08-24  Wenson Hsieh  &lt;wenson_hsieh@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Use _NSScrollingPredominantAxisFilter for wheel event filtering on Mac
</span></span></pre></div>
<a id="trunkSourceWebKit2SharedAPICocoaWebKitPrivateh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/Shared/API/Cocoa/WebKitPrivate.h (188890 => 188891)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/Shared/API/Cocoa/WebKitPrivate.h        2015-08-24 22:42:54 UTC (rev 188890)
+++ trunk/Source/WebKit2/Shared/API/Cocoa/WebKitPrivate.h        2015-08-24 22:45:17 UTC (rev 188891)
</span><span class="lines">@@ -35,4 +35,4 @@
</span><span class="cx"> #import &lt;WebKit/_WKFormInputSession.h&gt;
</span><span class="cx"> #import &lt;WebKit/_WKProcessPoolConfiguration.h&gt;
</span><span class="cx"> #import &lt;WebKit/_WKThumbnailView.h&gt;
</span><del>-#import &lt;WebKit/_WKVisitedLinkProvider.h&gt;
</del><ins>+#import &lt;WebKit/_WKVisitedLinkStore.h&gt;
</ins></span></pre></div>
<a id="trunkSourceWebKit2SharedCocoaAPIObjectmm"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/Shared/Cocoa/APIObject.mm (188890 => 188891)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/Shared/Cocoa/APIObject.mm        2015-08-24 22:42:54 UTC (rev 188890)
+++ trunk/Source/WebKit2/Shared/Cocoa/APIObject.mm        2015-08-24 22:45:17 UTC (rev 188891)
</span><span class="lines">@@ -66,7 +66,7 @@
</span><span class="cx"> #import &quot;_WKProcessPoolConfigurationInternal.h&quot;
</span><span class="cx"> #import &quot;_WKUserContentExtensionStoreInternal.h&quot;
</span><span class="cx"> #import &quot;_WKUserContentFilterInternal.h&quot;
</span><del>-#import &quot;_WKVisitedLinkProviderInternal.h&quot;
</del><ins>+#import &quot;_WKVisitedLinkStoreInternal.h&quot;
</ins><span class="cx"> #import &lt;objc/objc-auto.h&gt;
</span><span class="cx"> 
</span><span class="cx"> namespace API {
</span><span class="lines">@@ -207,7 +207,7 @@
</span><span class="cx">         break;
</span><span class="cx"> 
</span><span class="cx">     case Type::VisitedLinkProvider:
</span><del>-        wrapper = [_WKVisitedLinkProvider alloc];
</del><ins>+        wrapper = [_WKVisitedLinkStore alloc];
</ins><span class="cx">         break;
</span><span class="cx"> 
</span><span class="cx">     case Type::WebsiteDataRecord:
</span></span></pre></div>
<a id="trunkSourceWebKit2UIProcessAPICocoaWKWebViewmm"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm (188890 => 188891)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm        2015-08-24 22:42:54 UTC (rev 188890)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm        2015-08-24 22:45:17 UTC (rev 188891)
</span><span class="lines">@@ -76,7 +76,7 @@
</span><span class="cx"> #import &quot;_WKFormDelegate.h&quot;
</span><span class="cx"> #import &quot;_WKRemoteObjectRegistryInternal.h&quot;
</span><span class="cx"> #import &quot;_WKSessionStateInternal.h&quot;
</span><del>-#import &quot;_WKVisitedLinkProviderInternal.h&quot;
</del><ins>+#import &quot;_WKVisitedLinkStoreInternal.h&quot;
</ins><span class="cx"> #import &lt;WebCore/IOSurface.h&gt;
</span><span class="cx"> #import &lt;wtf/HashMap.h&gt;
</span><span class="cx"> #import &lt;wtf/MathExtras.h&gt;
</span><span class="lines">@@ -310,7 +310,7 @@
</span><span class="cx">         pageConfiguration-&gt;setRelatedPage(relatedWebView-&gt;_page.get());
</span><span class="cx"> 
</span><span class="cx">     pageConfiguration-&gt;setUserContentController([_configuration userContentController]-&gt;_userContentControllerProxy.get());
</span><del>-    pageConfiguration-&gt;setVisitedLinkProvider([_configuration _visitedLinkProvider]-&gt;_visitedLinkProvider.get());
</del><ins>+    pageConfiguration-&gt;setVisitedLinkProvider([_configuration _visitedLinkStore]-&gt;_visitedLinkProvider.get());
</ins><span class="cx">     pageConfiguration-&gt;setWebsiteDataStore([_configuration websiteDataStore]-&gt;_websiteDataStore.get());
</span><span class="cx">     pageConfiguration-&gt;setTreatsSHA1SignedCertificatesAsInsecure([_configuration _treatsSHA1SignedCertificatesAsInsecure]);
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebKit2UIProcessAPICocoaWKWebViewConfigurationmm"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebViewConfiguration.mm (188890 => 188891)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebViewConfiguration.mm        2015-08-24 22:42:54 UTC (rev 188890)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebViewConfiguration.mm        2015-08-24 22:45:17 UTC (rev 188891)
</span><span class="lines">@@ -83,7 +83,7 @@
</span><span class="cx">     LazyInitialized&lt;RetainPtr&lt;WKProcessPool&gt;&gt; _processPool;
</span><span class="cx">     LazyInitialized&lt;RetainPtr&lt;WKPreferences&gt;&gt; _preferences;
</span><span class="cx">     LazyInitialized&lt;RetainPtr&lt;WKUserContentController&gt;&gt; _userContentController;
</span><del>-    LazyInitialized&lt;RetainPtr&lt;_WKVisitedLinkProvider&gt;&gt; _visitedLinkProvider;
</del><ins>+    LazyInitialized&lt;RetainPtr&lt;_WKVisitedLinkStore&gt;&gt; _visitedLinkStore;
</ins><span class="cx">     LazyInitialized&lt;RetainPtr&lt;WKWebsiteDataStore&gt;&gt; _websiteDataStore;
</span><span class="cx">     WebKit::WeakObjCPtr&lt;WKWebView&gt; _relatedWebView;
</span><span class="cx">     WebKit::WeakObjCPtr&lt;WKWebView&gt; _alternateWebViewForNavigationGestures;
</span><span class="lines">@@ -127,7 +127,7 @@
</span><span class="cx">     configuration.preferences = self.preferences;
</span><span class="cx">     configuration.userContentController = self.userContentController;
</span><span class="cx">     configuration.websiteDataStore = self.websiteDataStore;
</span><del>-    configuration._visitedLinkProvider = self._visitedLinkProvider;
</del><ins>+    configuration._visitedLinkStore = self._visitedLinkStore;
</ins><span class="cx">     configuration._relatedWebView = _relatedWebView.get().get();
</span><span class="cx">     configuration._alternateWebViewForNavigationGestures = _alternateWebViewForNavigationGestures.get().get();
</span><span class="cx">     configuration-&gt;_treatsSHA1SignedCertificatesAsInsecure = _treatsSHA1SignedCertificatesAsInsecure;
</span><span class="lines">@@ -211,14 +211,14 @@
</span><span class="cx">     _applicationNameForUserAgent.set(adoptNS([applicationNameForUserAgent copy]));
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-- (_WKVisitedLinkProvider *)_visitedLinkProvider
</del><ins>+- (_WKVisitedLinkStore *)_visitedLinkStore
</ins><span class="cx"> {
</span><del>-    return _visitedLinkProvider.get([] { return adoptNS([[_WKVisitedLinkProvider alloc] init]); });
</del><ins>+    return _visitedLinkStore.get([] { return adoptNS([[_WKVisitedLinkStore alloc] init]); });
</ins><span class="cx"> }
</span><span class="cx"> 
</span><del>-- (void)_setVisitedLinkProvider:(_WKVisitedLinkProvider *)visitedLinkProvider
</del><ins>+- (void)_setVisitedLinkStore:(_WKVisitedLinkStore *)visitedLinkStore
</ins><span class="cx"> {
</span><del>-    _visitedLinkProvider.set(visitedLinkProvider);
</del><ins>+    _visitedLinkStore.set(visitedLinkStore);
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> #pragma clang diagnostic push
</span><span class="lines">@@ -234,6 +234,16 @@
</span><span class="cx">     self.websiteDataStore = websiteDataStore ? websiteDataStore-&gt;_dataStore.get() : nullptr;
</span><span class="cx"> }
</span><span class="cx"> 
</span><ins>+-(_WKVisitedLinkProvider *)_visitedLinkProvider
+{
+    return (_WKVisitedLinkProvider *)self._visitedLinkStore;
+}
+
+- (void)_setVisitedLinkProvider:(_WKVisitedLinkProvider *)_visitedLinkProvider
+{
+    self._visitedLinkStore = _visitedLinkProvider;
+}
+
</ins><span class="cx"> #pragma clang diagnostic pop
</span><span class="cx"> 
</span><span class="cx"> #if PLATFORM(IOS)
</span><span class="lines">@@ -262,8 +272,8 @@
</span><span class="cx">     if (!self.websiteDataStore)
</span><span class="cx">         [NSException raise:NSInvalidArgumentException format:@&quot;configuration.websiteDataStore is nil&quot;];
</span><span class="cx"> 
</span><del>-    if (!self._visitedLinkProvider)
-        [NSException raise:NSInvalidArgumentException format:@&quot;configuration._visitedLinkProvider is nil&quot;];
</del><ins>+    if (!self._visitedLinkStore)
+        [NSException raise:NSInvalidArgumentException format:@&quot;configuration._visitedLinkStore is nil&quot;];
</ins><span class="cx"> 
</span><span class="cx"> #if PLATFORM(IOS)
</span><span class="cx">     if (!self._contentProviderRegistry)
</span></span></pre></div>
<a id="trunkSourceWebKit2UIProcessAPICocoaWKWebViewConfigurationPrivateh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebViewConfigurationPrivate.h (188890 => 188891)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebViewConfigurationPrivate.h        2015-08-24 22:42:54 UTC (rev 188890)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebViewConfigurationPrivate.h        2015-08-24 22:45:17 UTC (rev 188891)
</span><span class="lines">@@ -29,6 +29,7 @@
</span><span class="cx"> 
</span><span class="cx"> @class WKWebView;
</span><span class="cx"> @class _WKVisitedLinkProvider;
</span><ins>+@class _WKVisitedLinkStore;
</ins><span class="cx"> @class _WKWebsiteDataStore;
</span><span class="cx"> 
</span><span class="cx"> @interface WKWebViewConfiguration (WKPrivate)
</span><span class="lines">@@ -36,10 +37,8 @@
</span><span class="cx"> @property (nonatomic, weak, setter=_setRelatedWebView:) WKWebView *_relatedWebView;
</span><span class="cx"> @property (nonatomic, copy, setter=_setGroupIdentifier:) NSString *_groupIdentifier;
</span><span class="cx"> 
</span><del>-@property (nonatomic, strong, setter=_setVisitedLinkProvider:) _WKVisitedLinkProvider *_visitedLinkProvider;
</del><ins>+@property (nonatomic, strong, setter=_setVisitedLinkStore:) _WKVisitedLinkStore *_visitedLinkStore;
</ins><span class="cx"> 
</span><del>-@property (nonatomic, strong, setter=_setWebsiteDataStore:) _WKWebsiteDataStore *_websiteDataStore WK_DEPRECATED(10_10, WK_MAC_TBA, 8_0, WK_IOS_TBA, &quot;Please use websiteDataStore instead&quot;);
-
</del><span class="cx"> @property (nonatomic, weak, setter=_setAlternateWebViewForNavigationGestures:) WKWebView *_alternateWebViewForNavigationGestures;
</span><span class="cx"> 
</span><span class="cx"> @property (nonatomic, setter=_setTreatsSHA1SignedCertificatesAsInsecure:) BOOL _treatsSHA1SignedCertificatesAsInsecure WK_AVAILABLE(NA, WK_IOS_TBA);
</span><span class="lines">@@ -48,6 +47,10 @@
</span><span class="cx"> @property (nonatomic, setter=_setAlwaysRunsAtForegroundPriority:) BOOL _alwaysRunsAtForegroundPriority WK_AVAILABLE(NA, WK_IOS_TBA);
</span><span class="cx"> #endif
</span><span class="cx"> 
</span><ins>+@property (nonatomic, strong, setter=_setVisitedLinkProvider:) _WKVisitedLinkProvider *_visitedLinkProvider WK_DEPRECATED(10_10, WK_MAC_TBA, 8_0, WK_IOS_TBA, &quot;Please use visitedLinkStore instead&quot;);
+
+@property (nonatomic, strong, setter=_setWebsiteDataStore:) _WKWebsiteDataStore *_websiteDataStore WK_DEPRECATED(10_10, WK_MAC_TBA, 8_0, WK_IOS_TBA, &quot;Please use websiteDataStore instead&quot;);
+
</ins><span class="cx"> @end
</span><span class="cx"> 
</span><span class="cx"> #endif
</span></span></pre></div>
<a id="trunkSourceWebKit2UIProcessAPICocoa_WKVisitedLinkProviderh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkProvider.h (188890 => 188891)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkProvider.h        2015-08-24 22:42:54 UTC (rev 188890)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkProvider.h        2015-08-24 22:45:17 UTC (rev 188891)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> /*
</span><del>- * Copyright (C) 2014 Apple Inc. All rights reserved.
</del><ins>+ * Copyright (C) 2015 Apple Inc. All rights reserved.
</ins><span class="cx">  *
</span><span class="cx">  * Redistribution and use in source and binary forms, with or without
</span><span class="cx">  * modification, are permitted provided that the following conditions
</span><span class="lines">@@ -23,17 +23,12 @@
</span><span class="cx">  * THE POSSIBILITY OF SUCH DAMAGE.
</span><span class="cx">  */
</span><span class="cx"> 
</span><del>-#import &lt;Foundation/Foundation.h&gt;
-#import &lt;WebKit/WKFoundation.h&gt;
</del><ins>+#import &lt;WebKit/_WKVisitedLinkStore.h&gt;
</ins><span class="cx"> 
</span><span class="cx"> #if WK_API_ENABLED
</span><span class="cx"> 
</span><del>-WK_CLASS_AVAILABLE(10_10, 8_0)
-@interface _WKVisitedLinkProvider : NSObject
-
-- (void)addVisitedLinkWithURL:(NSURL *)URL;
-- (void)removeAll;
-
</del><ins>+WK_CLASS_DEPRECATED(10_10, WK_MAC_TBA, 8_0, WK_IOS_TBA, &quot;Please use _WKVisitedLinkStore instead&quot;)
+@interface _WKVisitedLinkProvider : _WKVisitedLinkStore
</ins><span class="cx"> @end
</span><span class="cx"> 
</span><span class="cx"> #endif
</span></span></pre></div>
<a id="trunkSourceWebKit2UIProcessAPICocoa_WKVisitedLinkProvidermm"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkProvider.mm (188890 => 188891)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkProvider.mm        2015-08-24 22:42:54 UTC (rev 188890)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkProvider.mm        2015-08-24 22:45:17 UTC (rev 188891)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> /*
</span><del>- * Copyright (C) 2014 Apple Inc. All rights reserved.
</del><ins>+ * Copyright (C) 2015 Apple Inc. All rights reserved.
</ins><span class="cx">  *
</span><span class="cx">  * Redistribution and use in source and binary forms, with or without
</span><span class="cx">  * modification, are permitted provided that the following conditions
</span><span class="lines">@@ -23,52 +23,12 @@
</span><span class="cx">  * THE POSSIBILITY OF SUCH DAMAGE.
</span><span class="cx">  */
</span><span class="cx"> 
</span><del>-#import &quot;config.h&quot;
-#import &quot;_WKVisitedLinkProviderInternal.h&quot;
</del><ins>+#include &quot;config.h&quot;
+#include &quot;_WKVisitedLinkProvider.h&quot;
</ins><span class="cx"> 
</span><span class="cx"> #if WK_API_ENABLED
</span><span class="cx"> 
</span><del>-#import &quot;VisitedLinkProvider.h&quot;
-#import &lt;WebCore/LinkHash.h&gt;
-
</del><span class="cx"> @implementation _WKVisitedLinkProvider
</span><del>-
-- (instancetype)init
-{
-    if (!(self = [super init]))
-        return nil;
-
-    API::Object::constructInWrapper&lt;WebKit::VisitedLinkProvider&gt;(self);
-
-    return self;
-}
-
-- (void)dealloc
-{
-    _visitedLinkProvider-&gt;~VisitedLinkProvider();
-
-    [super dealloc];
-}
-
-- (void)addVisitedLinkWithURL:(NSURL *)URL
-{
-    auto linkHash = WebCore::visitedLinkHash(URL.absoluteString);
-
-    _visitedLinkProvider-&gt;addVisitedLinkHash(linkHash);
-}
-
-- (void)removeAll
-{
-    _visitedLinkProvider-&gt;removeAll();
-}
-
-#pragma mark WKObject protocol implementation
-
-- (API::Object&amp;)_apiObject
-{
-    return *_visitedLinkProvider;
-}
-
</del><span class="cx"> @end
</span><span class="cx"> 
</span><span class="cx"> #endif
</span></span></pre></div>
<a id="trunkSourceWebKit2UIProcessAPICocoa_WKVisitedLinkProviderInternalh"></a>
<div class="delfile"><h4>Deleted: trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkProviderInternal.h (188890 => 188891)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkProviderInternal.h        2015-08-24 22:42:54 UTC (rev 188890)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkProviderInternal.h        2015-08-24 22:45:17 UTC (rev 188891)
</span><span class="lines">@@ -1,51 +0,0 @@
</span><del>-/*
- * Copyright (C) 2014 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import &quot;_WKVisitedLinkProvider.h&quot;
-
-#if WK_API_ENABLED
-
-#import &quot;VisitedLinkProvider.h&quot;
-#import &quot;WKObject.h&quot;
-
-namespace WebKit {
-
-inline _WKVisitedLinkProvider *wrapper(VisitedLinkProvider&amp; visitedLinkProvider)
-{
-    ASSERT([visitedLinkProvider.wrapper() isKindOfClass:[_WKVisitedLinkProvider class]]);
-    return (_WKVisitedLinkProvider *)visitedLinkProvider.wrapper();
-}
-
-}
-
-@interface _WKVisitedLinkProvider () &lt;WKObject&gt; {
-@package
-    API::ObjectStorage&lt;WebKit::VisitedLinkProvider&gt; _visitedLinkProvider;
-}
-
-@end
-
-#endif
-
</del></span></pre></div>
<a id="trunkSourceWebKit2UIProcessAPICocoa_WKVisitedLinkStorehfromrev188876trunkSourceWebKit2UIProcessAPICocoa_WKVisitedLinkProviderh"></a>
<div class="copfile"><h4>Copied: trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkStore.h (from rev 188876, trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkProvider.h) (0 => 188891)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkStore.h                                (rev 0)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkStore.h        2015-08-24 22:45:17 UTC (rev 188891)
</span><span class="lines">@@ -0,0 +1,39 @@
</span><ins>+/*
+ * Copyright (C) 2014 Apple Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#import &lt;Foundation/Foundation.h&gt;
+#import &lt;WebKit/WKFoundation.h&gt;
+
+#if WK_API_ENABLED
+
+WK_CLASS_AVAILABLE(10_10, 8_0)
+@interface _WKVisitedLinkStore : NSObject
+
+- (void)addVisitedLinkWithURL:(NSURL *)URL;
+- (void)removeAll;
+
+@end
+
+#endif
</ins></span></pre></div>
<a id="trunkSourceWebKit2UIProcessAPICocoa_WKVisitedLinkStoremmfromrev188876trunkSourceWebKit2UIProcessAPICocoa_WKVisitedLinkProvidermm"></a>
<div class="copfile"><h4>Copied: trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkStore.mm (from rev 188876, trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkProvider.mm) (0 => 188891)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkStore.mm                                (rev 0)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkStore.mm        2015-08-24 22:45:17 UTC (rev 188891)
</span><span class="lines">@@ -0,0 +1,74 @@
</span><ins>+/*
+ * Copyright (C) 2014 Apple Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#import &quot;config.h&quot;
+#import &quot;_WKVisitedLinkStoreInternal.h&quot;
+
+#if WK_API_ENABLED
+
+#import &quot;VisitedLinkProvider.h&quot;
+#import &lt;WebCore/LinkHash.h&gt;
+
+@implementation _WKVisitedLinkStore
+
+- (instancetype)init
+{
+    if (!(self = [super init]))
+        return nil;
+
+    API::Object::constructInWrapper&lt;WebKit::VisitedLinkProvider&gt;(self);
+
+    return self;
+}
+
+- (void)dealloc
+{
+    _visitedLinkProvider-&gt;~VisitedLinkProvider();
+
+    [super dealloc];
+}
+
+- (void)addVisitedLinkWithURL:(NSURL *)URL
+{
+    auto linkHash = WebCore::visitedLinkHash(URL.absoluteString);
+
+    _visitedLinkProvider-&gt;addVisitedLinkHash(linkHash);
+}
+
+- (void)removeAll
+{
+    _visitedLinkProvider-&gt;removeAll();
+}
+
+#pragma mark WKObject protocol implementation
+
+- (API::Object&amp;)_apiObject
+{
+    return *_visitedLinkProvider;
+}
+
+@end
+
+#endif
</ins></span></pre></div>
<a id="trunkSourceWebKit2UIProcessAPICocoa_WKVisitedLinkStoreInternalhfromrev188876trunkSourceWebKit2UIProcessAPICocoa_WKVisitedLinkProviderInternalh"></a>
<div class="copfile"><h4>Copied: trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkStoreInternal.h (from rev 188876, trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkProviderInternal.h) (0 => 188891)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkStoreInternal.h                                (rev 0)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKVisitedLinkStoreInternal.h        2015-08-24 22:45:17 UTC (rev 188891)
</span><span class="lines">@@ -0,0 +1,51 @@
</span><ins>+/*
+ * Copyright (C) 2014 Apple Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#import &quot;_WKVisitedLinkStore.h&quot;
+
+#if WK_API_ENABLED
+
+#import &quot;VisitedLinkProvider.h&quot;
+#import &quot;WKObject.h&quot;
+
+namespace WebKit {
+
+inline _WKVisitedLinkStore *wrapper(VisitedLinkProvider&amp; visitedLinkProvider)
+{
+    ASSERT([visitedLinkProvider.wrapper() isKindOfClass:[_WKVisitedLinkStore class]]);
+    return (_WKVisitedLinkStore *)visitedLinkProvider.wrapper();
+}
+
+}
+
+@interface _WKVisitedLinkStore () &lt;WKObject&gt; {
+@package
+    API::ObjectStorage&lt;WebKit::VisitedLinkProvider&gt; _visitedLinkProvider;
+}
+
+@end
+
+#endif
+
</ins></span></pre></div>
<a id="trunkSourceWebKit2WebKit2xcodeprojprojectpbxproj"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj (188890 => 188891)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj        2015-08-24 22:42:54 UTC (rev 188890)
+++ trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj        2015-08-24 22:45:17 UTC (rev 188891)
</span><span class="lines">@@ -167,6 +167,8 @@
</span><span class="cx">                 1A1EF1991A1D5B420023200A /* APIDataCocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1A1EF1971A1D5B420023200A /* APIDataCocoa.mm */; };
</span><span class="cx">                 1A1FEC1C1627B45700700F6D /* WebConnectionMessageReceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A1FEC1A1627B45600700F6D /* WebConnectionMessageReceiver.cpp */; };
</span><span class="cx">                 1A1FEC1D1627B45700700F6D /* WebConnectionMessages.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A1FEC1B1627B45700700F6D /* WebConnectionMessages.h */; };
</span><ins>+                1A2067921B8B906600C13C36 /* _WKVisitedLinkProvider.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1A2067901B8B906600C13C36 /* _WKVisitedLinkProvider.mm */; };
+                1A2067931B8B906600C13C36 /* _WKVisitedLinkProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2067911B8B906600C13C36 /* _WKVisitedLinkProvider.h */; settings = {ATTRIBUTES = (Private, ); }; };
</ins><span class="cx">                 1A2161B011F37664008AD0F5 /* NPRuntimeObjectMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2161AE11F37664008AD0F5 /* NPRuntimeObjectMap.h */; };
</span><span class="cx">                 1A2161B111F37664008AD0F5 /* NPRuntimeObjectMap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A2161AF11F37664008AD0F5 /* NPRuntimeObjectMap.cpp */; };
</span><span class="cx">                 1A2162B011F38971008AD0F5 /* NPRuntimeUtilities.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A2162AE11F38971008AD0F5 /* NPRuntimeUtilities.cpp */; };
</span><span class="lines">@@ -309,9 +311,9 @@
</span><span class="cx">                 1A7E377518E4A33A003D0FFF /* WKScriptMessageHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A7E377418E4A33A003D0FFF /* WKScriptMessageHandler.h */; settings = {ATTRIBUTES = (Public, ); }; };
</span><span class="cx">                 1A7E377818E4A4FE003D0FFF /* WKScriptMessage.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1A7E377618E4A4FE003D0FFF /* WKScriptMessage.mm */; };
</span><span class="cx">                 1A7E377918E4A4FE003D0FFF /* WKScriptMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A7E377718E4A4FE003D0FFF /* WKScriptMessage.h */; settings = {ATTRIBUTES = (Public, ); }; };
</span><del>-                1A81B38018BD66AD0007FDAC /* _WKVisitedLinkProvider.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1A81B37E18BD66AD0007FDAC /* _WKVisitedLinkProvider.mm */; };
-                1A81B38118BD66AD0007FDAC /* _WKVisitedLinkProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A81B37F18BD66AD0007FDAC /* _WKVisitedLinkProvider.h */; settings = {ATTRIBUTES = (Private, ); }; };
-                1A81B38518BD673A0007FDAC /* _WKVisitedLinkProviderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A81B38418BD673A0007FDAC /* _WKVisitedLinkProviderInternal.h */; };
</del><ins>+                1A81B38018BD66AD0007FDAC /* _WKVisitedLinkStore.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1A81B37E18BD66AD0007FDAC /* _WKVisitedLinkStore.mm */; };
+                1A81B38118BD66AD0007FDAC /* _WKVisitedLinkStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A81B37F18BD66AD0007FDAC /* _WKVisitedLinkStore.h */; settings = {ATTRIBUTES = (Private, ); }; };
+                1A81B38518BD673A0007FDAC /* _WKVisitedLinkStoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A81B38418BD673A0007FDAC /* _WKVisitedLinkStoreInternal.h */; };
</ins><span class="cx">                 1A8C728C1738477C000A6554 /* LocalStorageDatabaseTracker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A8C728A1738477C000A6554 /* LocalStorageDatabaseTracker.cpp */; };
</span><span class="cx">                 1A8C728D1738477C000A6554 /* LocalStorageDatabaseTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A8C728B1738477C000A6554 /* LocalStorageDatabaseTracker.h */; };
</span><span class="cx">                 1A8E7D3C18C15149005A702A /* VisitedLinkTableControllerMessageReceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A8E7D3A18C15149005A702A /* VisitedLinkTableControllerMessageReceiver.cpp */; };
</span><span class="lines">@@ -2261,6 +2263,8 @@
</span><span class="cx">                 1A1FEC191627B3EF00700F6D /* WebConnection.messages.in */ = {isa = PBXFileReference; lastKnownFileType = text; path = WebConnection.messages.in; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A1FEC1A1627B45600700F6D /* WebConnectionMessageReceiver.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WebConnectionMessageReceiver.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A1FEC1B1627B45700700F6D /* WebConnectionMessages.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebConnectionMessages.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><ins>+                1A2067901B8B906600C13C36 /* _WKVisitedLinkProvider.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = _WKVisitedLinkProvider.mm; sourceTree = &quot;&lt;group&gt;&quot;; };
+                1A2067911B8B906600C13C36 /* _WKVisitedLinkProvider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _WKVisitedLinkProvider.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</ins><span class="cx">                 1A2161AE11F37664008AD0F5 /* NPRuntimeObjectMap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NPRuntimeObjectMap.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A2161AF11F37664008AD0F5 /* NPRuntimeObjectMap.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NPRuntimeObjectMap.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A2162AE11F38971008AD0F5 /* NPRuntimeUtilities.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NPRuntimeUtilities.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="lines">@@ -2416,9 +2420,9 @@
</span><span class="cx">                 1A7E377418E4A33A003D0FFF /* WKScriptMessageHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKScriptMessageHandler.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A7E377618E4A4FE003D0FFF /* WKScriptMessage.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WKScriptMessage.mm; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A7E377718E4A4FE003D0FFF /* WKScriptMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKScriptMessage.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><del>-                1A81B37E18BD66AD0007FDAC /* _WKVisitedLinkProvider.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = _WKVisitedLinkProvider.mm; sourceTree = &quot;&lt;group&gt;&quot;; };
-                1A81B37F18BD66AD0007FDAC /* _WKVisitedLinkProvider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _WKVisitedLinkProvider.h; sourceTree = &quot;&lt;group&gt;&quot;; };
-                1A81B38418BD673A0007FDAC /* _WKVisitedLinkProviderInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _WKVisitedLinkProviderInternal.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</del><ins>+                1A81B37E18BD66AD0007FDAC /* _WKVisitedLinkStore.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = _WKVisitedLinkStore.mm; sourceTree = &quot;&lt;group&gt;&quot;; };
+                1A81B37F18BD66AD0007FDAC /* _WKVisitedLinkStore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _WKVisitedLinkStore.h; sourceTree = &quot;&lt;group&gt;&quot;; };
+                1A81B38418BD673A0007FDAC /* _WKVisitedLinkStoreInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _WKVisitedLinkStoreInternal.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</ins><span class="cx">                 1A8C728A1738477C000A6554 /* LocalStorageDatabaseTracker.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LocalStorageDatabaseTracker.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A8C728B1738477C000A6554 /* LocalStorageDatabaseTracker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocalStorageDatabaseTracker.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A8E7D3818C150BF005A702A /* VisitedLinkTableController.messages.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VisitedLinkTableController.messages.in; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="lines">@@ -4428,6 +4432,8 @@
</span><span class="cx">                                 7CD5EBBC1746B04C000C1C45 /* WKTypeRefWrapper.mm */,
</span><span class="cx">                                 BC8699B2116AADAA002A925B /* WKView.h */,
</span><span class="cx">                                 BFA6179E12F0B99D0033E0CA /* WKViewPrivate.h */,
</span><ins>+                                1A2067911B8B906600C13C36 /* _WKVisitedLinkProvider.h */,
+                                1A2067901B8B906600C13C36 /* _WKVisitedLinkProvider.mm */,
</ins><span class="cx">                         );
</span><span class="cx">                         name = Deprecated;
</span><span class="cx">                         sourceTree = &quot;&lt;group&gt;&quot;;
</span><span class="lines">@@ -5328,9 +5334,9 @@
</span><span class="cx">                                 7C89D2B81A6B0F2C003A5FDE /* _WKUserContentFilter.h */,
</span><span class="cx">                                 7C89D2B71A6B0F2C003A5FDE /* _WKUserContentFilter.mm */,
</span><span class="cx">                                 7C89D2BB1A6B0F5B003A5FDE /* _WKUserContentFilterInternal.h */,
</span><del>-                                1A81B37F18BD66AD0007FDAC /* _WKVisitedLinkProvider.h */,
-                                1A81B37E18BD66AD0007FDAC /* _WKVisitedLinkProvider.mm */,
-                                1A81B38418BD673A0007FDAC /* _WKVisitedLinkProviderInternal.h */,
</del><ins>+                                1A81B37F18BD66AD0007FDAC /* _WKVisitedLinkStore.h */,
+                                1A81B37E18BD66AD0007FDAC /* _WKVisitedLinkStore.mm */,
+                                1A81B38418BD673A0007FDAC /* _WKVisitedLinkStoreInternal.h */,
</ins><span class="cx">                                 FED3C1DA1B447AE800E0EB7F /* APISerializedScriptValueCocoa.mm */,
</span><span class="cx">                                 7CEFA9601AC0999300B910FD /* APIUserContentExtensionStoreCocoa.mm */,
</span><span class="cx">                                 1A3635AB1A3145E500ED6197 /* APIWebsiteDataStoreCocoa.mm */,
</span><span class="lines">@@ -7541,8 +7547,8 @@
</span><span class="cx">                                 7CA3793E1AC378B30079DC37 /* _WKUserContentExtensionStorePrivate.h in Headers */,
</span><span class="cx">                                 7C89D2BA1A6B0F2C003A5FDE /* _WKUserContentFilter.h in Headers */,
</span><span class="cx">                                 7C89D2BC1A6B0F5B003A5FDE /* _WKUserContentFilterInternal.h in Headers */,
</span><del>-                                1A81B38118BD66AD0007FDAC /* _WKVisitedLinkProvider.h in Headers */,
-                                1A81B38518BD673A0007FDAC /* _WKVisitedLinkProviderInternal.h in Headers */,
</del><ins>+                                1A81B38118BD66AD0007FDAC /* _WKVisitedLinkStore.h in Headers */,
+                                1A81B38518BD673A0007FDAC /* _WKVisitedLinkStoreInternal.h in Headers */,
</ins><span class="cx">                                 1AFB4C6E1ADF0C7800B33339 /* _WKWebsiteDataRecord.h in Headers */,
</span><span class="cx">                                 1AFB4C721ADF155D00B33339 /* _WKWebsiteDataStore.h in Headers */,
</span><span class="cx">                                 1A4A93B71AEB08EA00150E9C /* _WKWebsiteDataStoreInternal.h in Headers */,
</span><span class="lines">@@ -8166,6 +8172,7 @@
</span><span class="cx">                                 BC017D0916260FF4007054F5 /* WKDOMElement.h in Headers */,
</span><span class="cx">                                 BC017D0B16260FF4007054F5 /* WKDOMInternals.h in Headers */,
</span><span class="cx">                                 BC017D0D16260FF4007054F5 /* WKDOMNode.h in Headers */,
</span><ins>+                                1A2067931B8B906600C13C36 /* _WKVisitedLinkProvider.h in Headers */,
</ins><span class="cx">                                 BC5D24C216CD706D007D5461 /* WKDOMNodePrivate.h in Headers */,
</span><span class="cx">                                 BC39C4361626366F008BC689 /* WKDOMRange.h in Headers */,
</span><span class="cx">                                 BC5D24C516CD7088007D5461 /* WKDOMRangePrivate.h in Headers */,
</span><span class="lines">@@ -9356,7 +9363,7 @@
</span><span class="cx">                                 2D6B371C18A967AD0042AE80 /* _WKThumbnailView.mm in Sources */,
</span><span class="cx">                                 7C2413021AACFA7500A58C15 /* _WKUserContentExtensionStore.mm in Sources */,
</span><span class="cx">                                 7C89D2B91A6B0F2C003A5FDE /* _WKUserContentFilter.mm in Sources */,
</span><del>-                                1A81B38018BD66AD0007FDAC /* _WKVisitedLinkProvider.mm in Sources */,
</del><ins>+                                1A81B38018BD66AD0007FDAC /* _WKVisitedLinkStore.mm in Sources */,
</ins><span class="cx">                                 1AFB4C711ADF155D00B33339 /* _WKWebsiteDataStore.mm in Sources */,
</span><span class="cx">                                 A115DC71191D82D700DA8072 /* _WKWebViewPrintFormatter.mm in Sources */,
</span><span class="cx">                                 A7D792D61767CB6E00881CBE /* ActivityAssertion.cpp in Sources */,
</span><span class="lines">@@ -9619,6 +9626,7 @@
</span><span class="cx">                                 1A2D90D31281C966001EB962 /* PluginProcessCreationParameters.cpp in Sources */,
</span><span class="cx">                                 1AA4792312A59FD9008236C3 /* PluginProcessMac.mm in Sources */,
</span><span class="cx">                                 BC82838C16B45F0700A278FE /* PluginProcessMain.mm in Sources */,
</span><ins>+                                1A2067921B8B906600C13C36 /* _WKVisitedLinkProvider.mm in Sources */,
</ins><span class="cx">                                 1A0EC604124A9F2C007EF4A5 /* PluginProcessManager.cpp in Sources */,
</span><span class="cx">                                 9F54F8951648AE0F007DF81A /* PluginProcessManagerMac.mm in Sources */,
</span><span class="cx">                                 1A043CEB124FE38F00FFBFB5 /* PluginProcessMessageReceiver.cpp in Sources */,
</span></span></pre>
</div>
</div>

</body>
</html>