Title: [218758] trunk/Source/WebKit2
Revision
218758
Author
[email protected]
Date
2017-06-23 13:12:05 -0700 (Fri, 23 Jun 2017)

Log Message

Fix typo in WebProcessProxy::topPrivatelyControlledDomainsWithWebsiteData() naming
https://bugs.webkit.org/show_bug.cgi?id=173781

Reviewed by Brent Fulgham.

* UIProcess/WebProcessProxy.cpp:
(WebKit::WebProcessProxy::topPrivatelyControlledDomainsWithWebsiteData):
(WebKit::WebProcessProxy::topPrivatelyControlledDomainsWithWebiteData): Deleted.
* UIProcess/WebProcessProxy.h:
* UIProcess/WebResourceLoadStatisticsStore.cpp:
(WebKit::WebResourceLoadStatisticsStore::grandfatherExistingWebsiteData):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (218757 => 218758)


--- trunk/Source/WebKit2/ChangeLog	2017-06-23 19:32:18 UTC (rev 218757)
+++ trunk/Source/WebKit2/ChangeLog	2017-06-23 20:12:05 UTC (rev 218758)
@@ -1,3 +1,17 @@
+2017-06-23  Chris Dumez  <[email protected]>
+
+        Fix typo in WebProcessProxy::topPrivatelyControlledDomainsWithWebsiteData() naming
+        https://bugs.webkit.org/show_bug.cgi?id=173781
+
+        Reviewed by Brent Fulgham.
+
+        * UIProcess/WebProcessProxy.cpp:
+        (WebKit::WebProcessProxy::topPrivatelyControlledDomainsWithWebsiteData):
+        (WebKit::WebProcessProxy::topPrivatelyControlledDomainsWithWebiteData): Deleted.
+        * UIProcess/WebProcessProxy.h:
+        * UIProcess/WebResourceLoadStatisticsStore.cpp:
+        (WebKit::WebResourceLoadStatisticsStore::grandfatherExistingWebsiteData):
+
 2017-06-23  Jer Noble  <[email protected]>
 
         [WK2] Support -[WebAVPlayerController setMuted:]

Modified: trunk/Source/WebKit2/UIProcess/WebProcessProxy.cpp (218757 => 218758)


--- trunk/Source/WebKit2/UIProcess/WebProcessProxy.cpp	2017-06-23 19:32:18 UTC (rev 218757)
+++ trunk/Source/WebKit2/UIProcess/WebProcessProxy.cpp	2017-06-23 20:12:05 UTC (rev 218758)
@@ -270,7 +270,7 @@
     }
 }
 
-void WebProcessProxy::topPrivatelyControlledDomainsWithWebiteData(OptionSet<WebsiteDataType> dataTypes, bool shouldNotifyPage, Function<void(HashSet<String>&&)>&& completionHandler)
+void WebProcessProxy::topPrivatelyControlledDomainsWithWebsiteData(OptionSet<WebsiteDataType> dataTypes, bool shouldNotifyPage, Function<void(HashSet<String>&&)>&& completionHandler)
 {
     // We expect this to be called on the main thread so we get the default website data store.
     ASSERT(isMainThread());

Modified: trunk/Source/WebKit2/UIProcess/WebProcessProxy.h (218757 => 218758)


--- trunk/Source/WebKit2/UIProcess/WebProcessProxy.h	2017-06-23 19:32:18 UTC (rev 218757)
+++ trunk/Source/WebKit2/UIProcess/WebProcessProxy.h	2017-06-23 20:12:05 UTC (rev 218758)
@@ -142,7 +142,7 @@
     void deleteWebsiteData(WebCore::SessionID, OptionSet<WebsiteDataType>, std::chrono::system_clock::time_point modifiedSince, Function<void()>&& completionHandler);
     void deleteWebsiteDataForOrigins(WebCore::SessionID, OptionSet<WebsiteDataType>, const Vector<WebCore::SecurityOriginData>&, Function<void()>&& completionHandler);
     static void deleteWebsiteDataForTopPrivatelyControlledDomainsInAllPersistentDataStores(OptionSet<WebsiteDataType>, Vector<String>&& topPrivatelyControlledDomains, bool shouldNotifyPages, Function<void(Vector<String>)>&& completionHandler);
-    static void topPrivatelyControlledDomainsWithWebiteData(OptionSet<WebsiteDataType> dataTypes, bool shouldNotifyPage, Function<void(HashSet<String>&&)>&& completionHandler);
+    static void topPrivatelyControlledDomainsWithWebsiteData(OptionSet<WebsiteDataType> dataTypes, bool shouldNotifyPage, Function<void(HashSet<String>&&)>&& completionHandler);
     static void notifyPageStatisticsAndDataRecordsProcessed();
 
     void enableSuddenTermination();

Modified: trunk/Source/WebKit2/UIProcess/WebResourceLoadStatisticsStore.cpp (218757 => 218758)


--- trunk/Source/WebKit2/UIProcess/WebResourceLoadStatisticsStore.cpp	2017-06-23 19:32:18 UTC (rev 218757)
+++ trunk/Source/WebKit2/UIProcess/WebResourceLoadStatisticsStore.cpp	2017-06-23 20:12:05 UTC (rev 218758)
@@ -215,7 +215,7 @@
     
     // Switch to the main thread to get the default website data store
     RunLoop::main().dispatch([this, protectedThis = makeRef(*this)] () mutable {
-        WebProcessProxy::topPrivatelyControlledDomainsWithWebiteData(dataTypesToRemove, notifyPages, [this, protectedThis = WTFMove(protectedThis)] (HashSet<String>&& topPrivatelyControlledDomainsWithWebsiteData) mutable {
+        WebProcessProxy::topPrivatelyControlledDomainsWithWebsiteData(dataTypesToRemove, notifyPages, [this, protectedThis = WTFMove(protectedThis)] (HashSet<String>&& topPrivatelyControlledDomainsWithWebsiteData) mutable {
             // But always touch the ResourceLoadStatistics store on the worker queue
             m_statisticsQueue->dispatch([protectedThis = WTFMove(protectedThis), topDomains = CrossThreadCopier<HashSet<String>>::copy(topPrivatelyControlledDomainsWithWebsiteData)] () mutable {
                 protectedThis->coreStore().handleFreshStartWithEmptyOrNoStore(WTFMove(topDomains));
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to