Title: [259221] trunk/Source/WebKit
Revision
259221
Author
pvol...@apple.com
Date
2020-03-30 13:07:43 -0700 (Mon, 30 Mar 2020)

Log Message

Unreviewed build fix after r259200.

* WebProcess/WebSleepDisablerClient.cpp:
(WebKit::WebSleepDisablerClient::didCreateSleepDisabler):
(WebKit::WebSleepDisablerClient::didDestroySleepDisabler):
* WebProcess/WebSleepDisablerClient.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (259220 => 259221)


--- trunk/Source/WebKit/ChangeLog	2020-03-30 20:07:11 UTC (rev 259220)
+++ trunk/Source/WebKit/ChangeLog	2020-03-30 20:07:43 UTC (rev 259221)
@@ -1,3 +1,12 @@
+2020-03-30  Per Arne Vollan  <pvol...@apple.com>
+
+        Unreviewed build fix after r259200.
+
+        * WebProcess/WebSleepDisablerClient.cpp:
+        (WebKit::WebSleepDisablerClient::didCreateSleepDisabler):
+        (WebKit::WebSleepDisablerClient::didDestroySleepDisabler):
+        * WebProcess/WebSleepDisablerClient.h:
+
 2020-03-30  Chris Dumez  <cdu...@apple.com>
 
         WebKit should take a foreground assertion for offscreen loads when the app is foreground

Modified: trunk/Source/WebKit/WebProcess/WebSleepDisablerClient.cpp (259220 => 259221)


--- trunk/Source/WebKit/WebProcess/WebSleepDisablerClient.cpp	2020-03-30 20:07:11 UTC (rev 259220)
+++ trunk/Source/WebKit/WebProcess/WebSleepDisablerClient.cpp	2020-03-30 20:07:43 UTC (rev 259221)
@@ -31,12 +31,12 @@
 
 namespace WebKit {
 
-void WebSleepDisablerClient::didCreateSleepDisabler(SleepDisablerIdentifier identifier, const String& reason, bool display)
+void WebSleepDisablerClient::didCreateSleepDisabler(WebCore::SleepDisablerIdentifier identifier, const String& reason, bool display)
 {
     WebProcess::singleton().parentProcessConnection()->send(Messages::WebProcessProxy::DidCreateSleepDisabler(identifier, reason, display), 0);
 }
 
-void WebSleepDisablerClient::didDestroySleepDisabler(SleepDisablerIdentifier identifier)
+void WebSleepDisablerClient::didDestroySleepDisabler(WebCore::SleepDisablerIdentifier identifier)
 {
     WebProcess::singleton().parentProcessConnection()->send(Messages::WebProcessProxy::DidDestroySleepDisabler(identifier), 0);
 }

Modified: trunk/Source/WebKit/WebProcess/WebSleepDisablerClient.h (259220 => 259221)


--- trunk/Source/WebKit/WebProcess/WebSleepDisablerClient.h	2020-03-30 20:07:11 UTC (rev 259220)
+++ trunk/Source/WebKit/WebProcess/WebSleepDisablerClient.h	2020-03-30 20:07:43 UTC (rev 259221)
@@ -32,8 +32,8 @@
 class WebSleepDisablerClient : public WebCore::SleepDisablerClient {
     WTF_MAKE_FAST_ALLOCATED;
 public:
-    void didCreateSleepDisabler(SleepDisablerIdentifier, const String&, bool) override;
-    void didDestroySleepDisabler(SleepDisablerIdentifier) override;
+    void didCreateSleepDisabler(WebCore::SleepDisablerIdentifier, const String&, bool) override;
+    void didDestroySleepDisabler(WebCore::SleepDisablerIdentifier) override;
 };
 
 } // namespace WebKit
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to