Title: [270419] trunk/Source/WebKit
Revision
270419
Author
[email protected]
Date
2020-12-03 16:38:18 -0800 (Thu, 03 Dec 2020)

Log Message

Drop unimplemented suspension functions on GPUConnectionToWebProcess and WebAuthnConnectionToWebProcess
https://bugs.webkit.org/show_bug.cgi?id=219513

Reviewed by Tim Horton.

These functions are never called and have no implementation. This is just bad copy/paste from
NetworkConnectionToWebProcess.

* GPUProcess/GPUConnectionToWebProcess.h:
* WebAuthnProcess/WebAuthnConnectionToWebProcess.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (270418 => 270419)


--- trunk/Source/WebKit/ChangeLog	2020-12-04 00:31:23 UTC (rev 270418)
+++ trunk/Source/WebKit/ChangeLog	2020-12-04 00:38:18 UTC (rev 270419)
@@ -1,3 +1,16 @@
+2020-12-03  Chris Dumez  <[email protected]>
+
+        Drop unimplemented suspension functions on GPUConnectionToWebProcess and WebAuthnConnectionToWebProcess
+        https://bugs.webkit.org/show_bug.cgi?id=219513
+
+        Reviewed by Tim Horton.
+
+        These functions are never called and have no implementation. This is just bad copy/paste from
+        NetworkConnectionToWebProcess.
+
+        * GPUProcess/GPUConnectionToWebProcess.h:
+        * WebAuthnProcess/WebAuthnConnectionToWebProcess.h:
+
 2020-12-03  Brent Fulgham  <[email protected]>
 
         [macOS] Only extend access to the AppleSNBFBUserClient IOKit class if the GPU Process is not used

Modified: trunk/Source/WebKit/GPUProcess/GPUConnectionToWebProcess.h (270418 => 270419)


--- trunk/Source/WebKit/GPUProcess/GPUConnectionToWebProcess.h	2020-12-04 00:31:23 UTC (rev 270418)
+++ trunk/Source/WebKit/GPUProcess/GPUConnectionToWebProcess.h	2020-12-04 00:38:18 UTC (rev 270419)
@@ -71,9 +71,6 @@
     GPUProcess& gpuProcess() { return m_gpuProcess.get(); }
     WebCore::ProcessIdentifier webProcessIdentifier() const { return m_webProcessIdentifier; }
 
-    void cleanupForSuspension(Function<void()>&&);
-    void endSuspension();
-
     RemoteMediaResourceManager& remoteMediaResourceManager();
 
     Logger& logger();

Modified: trunk/Source/WebKit/WebAuthnProcess/WebAuthnConnectionToWebProcess.h (270418 => 270419)


--- trunk/Source/WebKit/WebAuthnProcess/WebAuthnConnectionToWebProcess.h	2020-12-04 00:31:23 UTC (rev 270418)
+++ trunk/Source/WebKit/WebAuthnProcess/WebAuthnConnectionToWebProcess.h	2020-12-04 00:38:18 UTC (rev 270419)
@@ -56,9 +56,6 @@
     WebAuthnProcess& WebAuthnProcessProcess() { return m_WebAuthnProcess.get(); }
     WebCore::ProcessIdentifier webProcessIdentifier() const { return m_webProcessIdentifier; }
 
-    void cleanupForSuspension(Function<void()>&&);
-    void endSuspension();
-
 private:
     using RequestCompletionHandler = CompletionHandler<void(const WebCore::AuthenticatorResponseData&, const WebCore::ExceptionData&)>;
     using QueryCompletionHandler = CompletionHandler<void(bool)>;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to