Title: [259304] trunk/Source/WebCore
Revision
259304
Author
[email protected]
Date
2020-03-31 12:55:33 -0700 (Tue, 31 Mar 2020)

Log Message

Buildfix after r259928.

Replace outer function with its virtual implementation in
child class.

Unreviewed build fix.

* workers/WorkerAnimationController.cpp:
(WebCore::WorkerAnimationController::virtualHasPendingActivity const):
(WebCore::WorkerAnimationController::hasPendingActivity const): Deleted.
* workers/WorkerAnimationController.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (259303 => 259304)


--- trunk/Source/WebCore/ChangeLog	2020-03-31 19:40:05 UTC (rev 259303)
+++ trunk/Source/WebCore/ChangeLog	2020-03-31 19:55:33 UTC (rev 259304)
@@ -1,3 +1,17 @@
+2020-03-31  Lauro Moura  <[email protected]>
+
+        Buildfix after r259928.
+
+        Replace outer function with its virtual implementation in
+        child class.
+
+        Unreviewed build fix.
+
+        * workers/WorkerAnimationController.cpp:
+        (WebCore::WorkerAnimationController::virtualHasPendingActivity const):
+        (WebCore::WorkerAnimationController::hasPendingActivity const): Deleted.
+        * workers/WorkerAnimationController.h:
+
 2020-03-31  Eric Carlson  <[email protected]>
 
         [iPad] Use AVAudioSession to detect AirPlay route changes

Modified: trunk/Source/WebCore/workers/WorkerAnimationController.cpp (259303 => 259304)


--- trunk/Source/WebCore/workers/WorkerAnimationController.cpp	2020-03-31 19:40:05 UTC (rev 259303)
+++ trunk/Source/WebCore/workers/WorkerAnimationController.cpp	2020-03-31 19:55:33 UTC (rev 259304)
@@ -61,7 +61,7 @@
     return "WorkerAnimationController";
 }
 
-bool WorkerAnimationController::hasPendingActivity() const
+bool WorkerAnimationController::virtualHasPendingActivity() const
 {
     return m_animationTimer.isActive();
 }

Modified: trunk/Source/WebCore/workers/WorkerAnimationController.h (259303 => 259304)


--- trunk/Source/WebCore/workers/WorkerAnimationController.h	2020-03-31 19:40:05 UTC (rev 259303)
+++ trunk/Source/WebCore/workers/WorkerAnimationController.h	2020-03-31 19:55:33 UTC (rev 259304)
@@ -56,7 +56,7 @@
 
     const char* activeDOMObjectName() const final;
 
-    bool hasPendingActivity() const final;
+    bool virtualHasPendingActivity() const final;
     void stop() final;
     void suspend(ReasonForSuspension) final;
     void resume() final;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to