Title: [276982] trunk/Source/WebKitLegacy
Revision
276982
Author
commit-qu...@webkit.org
Date
2021-05-04 13:48:11 -0700 (Tue, 04 May 2021)

Log Message

Remove unused references to PageGroup from WebKitLegacy
https://bugs.webkit.org/show_bug.cgi?id=225359

Patch by Alex Christensen <achristen...@webkit.org> on 2021-05-04
Reviewed by Sihui Liu.

Source/WebKitLegacy:

* Storage/StorageTracker.cpp:

Source/WebKitLegacy/mac:

* History/WebHistory.mm:
* History/WebHistoryInternal.h:
* Storage/WebStorageManager.mm:
* WebView/WebView.mm:

Source/WebKitLegacy/win:

* WebCoreSupport/WebPlatformStrategies.cpp:
* WebHistory.cpp:
* WebHistory.h:
* WebKitDLL.cpp:
* WebView.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebKitLegacy/ChangeLog (276981 => 276982)


--- trunk/Source/WebKitLegacy/ChangeLog	2021-05-04 20:44:40 UTC (rev 276981)
+++ trunk/Source/WebKitLegacy/ChangeLog	2021-05-04 20:48:11 UTC (rev 276982)
@@ -1,3 +1,12 @@
+2021-05-04  Alex Christensen  <achristen...@webkit.org>
+
+        Remove unused references to PageGroup from WebKitLegacy
+        https://bugs.webkit.org/show_bug.cgi?id=225359
+
+        Reviewed by Sihui Liu.
+
+        * Storage/StorageTracker.cpp:
+
 2021-04-27  Chris Dumez  <cdu...@apple.com>
 
         Copy-on-write semantics should be an internal implementation detail of StorageMap

Modified: trunk/Source/WebKitLegacy/Storage/StorageTracker.cpp (276981 => 276982)


--- trunk/Source/WebKitLegacy/Storage/StorageTracker.cpp	2021-05-04 20:44:40 UTC (rev 276981)
+++ trunk/Source/WebKitLegacy/Storage/StorageTracker.cpp	2021-05-04 20:48:11 UTC (rev 276982)
@@ -28,7 +28,6 @@
 #include "StorageThread.h"
 #include "StorageTrackerClient.h"
 #include "WebStorageNamespaceProvider.h"
-#include <WebCore/PageGroup.h>
 #include <WebCore/SQLiteDatabaseTracker.h>
 #include <WebCore/SQLiteStatement.h>
 #include <WebCore/SecurityOrigin.h>

Modified: trunk/Source/WebKitLegacy/mac/ChangeLog (276981 => 276982)


--- trunk/Source/WebKitLegacy/mac/ChangeLog	2021-05-04 20:44:40 UTC (rev 276981)
+++ trunk/Source/WebKitLegacy/mac/ChangeLog	2021-05-04 20:48:11 UTC (rev 276982)
@@ -1,3 +1,15 @@
+2021-05-04  Alex Christensen  <achristen...@webkit.org>
+
+        Remove unused references to PageGroup from WebKitLegacy
+        https://bugs.webkit.org/show_bug.cgi?id=225359
+
+        Reviewed by Sihui Liu.
+
+        * History/WebHistory.mm:
+        * History/WebHistoryInternal.h:
+        * Storage/WebStorageManager.mm:
+        * WebView/WebView.mm:
+
 2021-05-03  Devin Rousso  <drou...@apple.com>
 
         [macCatalyst] "Enter Full Screen" button in media controls disappears

Modified: trunk/Source/WebKitLegacy/mac/History/WebHistory.mm (276981 => 276982)


--- trunk/Source/WebKitLegacy/mac/History/WebHistory.mm	2021-05-04 20:44:40 UTC (rev 276981)
+++ trunk/Source/WebKitLegacy/mac/History/WebHistory.mm	2021-05-04 20:48:11 UTC (rev 276982)
@@ -35,7 +35,6 @@
 #import "WebTypesInternal.h"
 #import "WebVisitedLinkStore.h"
 #import <WebCore/HistoryItem.h>
-#import <WebCore/PageGroup.h>
 #import <pal/spi/cocoa/NSCalendarDateSPI.h>
 
 #if PLATFORM(IOS_FAMILY)

Modified: trunk/Source/WebKitLegacy/mac/History/WebHistoryInternal.h (276981 => 276982)


--- trunk/Source/WebKitLegacy/mac/History/WebHistoryInternal.h	2021-05-04 20:44:40 UTC (rev 276981)
+++ trunk/Source/WebKitLegacy/mac/History/WebHistoryInternal.h	2021-05-04 20:48:11 UTC (rev 276982)
@@ -30,10 +30,6 @@
 
 class WebVisitedLinkStore;
 
-namespace WebCore {
-    class PageGroup;
-}
-
 @interface WebHistory (WebInternal)
 - (void)_visitedURL:(NSURL *)URL withTitle:(NSString *)title method:(NSString *)method wasFailure:(BOOL)wasFailure;
 - (void)_addVisitedLinksToVisitedLinkStore:(WebVisitedLinkStore&)visitedLinkStore;

Modified: trunk/Source/WebKitLegacy/mac/Storage/WebStorageManager.mm (276981 => 276982)


--- trunk/Source/WebKitLegacy/mac/Storage/WebStorageManager.mm	2021-05-04 20:44:40 UTC (rev 276981)
+++ trunk/Source/WebKitLegacy/mac/Storage/WebStorageManager.mm	2021-05-04 20:48:11 UTC (rev 276982)
@@ -30,7 +30,6 @@
 #import "WebSecurityOriginInternal.h"
 #import "WebStorageNamespaceProvider.h"
 #import "WebStorageTrackerClient.h"
-#import <WebCore/PageGroup.h>
 #import <WebCore/SecurityOrigin.h>
 #import <WebCore/SecurityOriginData.h>
 #import <wtf/cocoa/VectorCocoa.h>

Modified: trunk/Source/WebKitLegacy/mac/WebView/WebView.mm (276981 => 276982)


--- trunk/Source/WebKitLegacy/mac/WebView/WebView.mm	2021-05-04 20:44:40 UTC (rev 276981)
+++ trunk/Source/WebKitLegacy/mac/WebView/WebView.mm	2021-05-04 20:48:11 UTC (rev 276982)
@@ -191,7 +191,6 @@
 #import <WebCore/NotificationController.h>
 #import <WebCore/Page.h>
 #import <WebCore/PageConfiguration.h>
-#import <WebCore/PageGroup.h>
 #import <WebCore/PathUtilities.h>
 #import <WebCore/PlatformEventFactoryMac.h>
 #import <WebCore/PlatformScreen.h>

Modified: trunk/Source/WebKitLegacy/win/ChangeLog (276981 => 276982)


--- trunk/Source/WebKitLegacy/win/ChangeLog	2021-05-04 20:44:40 UTC (rev 276981)
+++ trunk/Source/WebKitLegacy/win/ChangeLog	2021-05-04 20:48:11 UTC (rev 276982)
@@ -1,3 +1,16 @@
+2021-05-04  Alex Christensen  <achristen...@webkit.org>
+
+        Remove unused references to PageGroup from WebKitLegacy
+        https://bugs.webkit.org/show_bug.cgi?id=225359
+
+        Reviewed by Sihui Liu.
+
+        * WebCoreSupport/WebPlatformStrategies.cpp:
+        * WebHistory.cpp:
+        * WebHistory.h:
+        * WebKitDLL.cpp:
+        * WebView.cpp:
+
 2021-04-27  Alex Christensen  <achristen...@webkit.org>
 
         charset in contentType used in Blob.prototype.slice(start, end, contentType) is lost

Modified: trunk/Source/WebKitLegacy/win/WebCoreSupport/WebPlatformStrategies.cpp (276981 => 276982)


--- trunk/Source/WebKitLegacy/win/WebCoreSupport/WebPlatformStrategies.cpp	2021-05-04 20:44:40 UTC (rev 276981)
+++ trunk/Source/WebKitLegacy/win/WebCoreSupport/WebPlatformStrategies.cpp	2021-05-04 20:48:11 UTC (rev 276982)
@@ -34,7 +34,6 @@
 #include <WebCore/MediaStrategy.h>
 #include <WebCore/NetworkStorageSession.h>
 #include <WebCore/Page.h>
-#include <WebCore/PageGroup.h>
 
 #if USE(CFURLCONNECTION)
 #include <pal/spi/win/CFNetworkSPIWin.h>

Modified: trunk/Source/WebKitLegacy/win/WebHistory.cpp (276981 => 276982)


--- trunk/Source/WebKitLegacy/win/WebHistory.cpp	2021-05-04 20:44:40 UTC (rev 276981)
+++ trunk/Source/WebKitLegacy/win/WebHistory.cpp	2021-05-04 20:48:11 UTC (rev 276982)
@@ -36,7 +36,6 @@
 #include "WebVisitedLinkStore.h"
 #include <WebCore/BString.h>
 #include <WebCore/HistoryItem.h>
-#include <WebCore/PageGroup.h>
 #include <WebCore/SharedBuffer.h>
 #include <functional>
 #include <wtf/DateMath.h>

Modified: trunk/Source/WebKitLegacy/win/WebHistory.h (276981 => 276982)


--- trunk/Source/WebKitLegacy/win/WebHistory.h	2021-05-04 20:44:40 UTC (rev 276981)
+++ trunk/Source/WebKitLegacy/win/WebHistory.h	2021-05-04 20:48:11 UTC (rev 276982)
@@ -32,10 +32,6 @@
 #include <wtf/Forward.h>
 #include <wtf/HashMap.h>
 
-namespace WebCore {
-class PageGroup;
-}
-
 //-----------------------------------------------------------------------------
 
 class WebPreferences;

Modified: trunk/Source/WebKitLegacy/win/WebKitDLL.cpp (276981 => 276982)


--- trunk/Source/WebKitLegacy/win/WebKitDLL.cpp	2021-05-04 20:44:40 UTC (rev 276981)
+++ trunk/Source/WebKitLegacy/win/WebKitDLL.cpp	2021-05-04 20:48:11 UTC (rev 276982)
@@ -37,7 +37,6 @@
 #include "WebStorageNamespaceProvider.h"
 #include <WebCore/COMPtr.h>
 #include <WebCore/Page.h>
-#include <WebCore/PageGroup.h>
 #include <WebCore/PlatformDisplay.h>
 #include <WebCore/RenderThemeWin.h>
 #include <WebCore/SharedBuffer.h>

Modified: trunk/Source/WebKitLegacy/win/WebView.cpp (276981 => 276982)


--- trunk/Source/WebKitLegacy/win/WebView.cpp	2021-05-04 20:44:40 UTC (rev 276981)
+++ trunk/Source/WebKitLegacy/win/WebView.cpp	2021-05-04 20:48:11 UTC (rev 276982)
@@ -137,7 +137,6 @@
 #include <WebCore/NetworkStorageSession.h>
 #include <WebCore/NotImplemented.h>
 #include <WebCore/PageConfiguration.h>
-#include <WebCore/PageGroup.h>
 #include <WebCore/PathUtilities.h>
 #include <WebCore/PlatformKeyboardEvent.h>
 #include <WebCore/PlatformMouseEvent.h>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to