Title: [248997] trunk/Source/WebCore
Revision
248997
Author
jer.no...@apple.com
Date
2019-08-21 23:16:08 -0700 (Wed, 21 Aug 2019)

Log Message

Unreviewed build fix; add a 'final' declaration on shouldOverridePauseDuringRouteChange().

* Modules/mediastream/MediaStream.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (248996 => 248997)


--- trunk/Source/WebCore/ChangeLog	2019-08-22 05:51:53 UTC (rev 248996)
+++ trunk/Source/WebCore/ChangeLog	2019-08-22 06:16:08 UTC (rev 248997)
@@ -1,3 +1,9 @@
+2019-08-21  Jer Noble  <jer.no...@apple.com>
+
+        Unreviewed build fix; add a 'final' declaration on shouldOverridePauseDuringRouteChange().
+
+        * Modules/mediastream/MediaStream.h:
+
 2019-08-21  Saam Barati  <sbar...@apple.com>
 
         [WHLSL] Improve default constructor and emit fewer pointers in metal codegen

Modified: trunk/Source/WebCore/Modules/mediastream/MediaStream.h (248996 => 248997)


--- trunk/Source/WebCore/Modules/mediastream/MediaStream.h	2019-08-22 05:51:53 UTC (rev 248996)
+++ trunk/Source/WebCore/Modules/mediastream/MediaStream.h	2019-08-22 06:16:08 UTC (rev 248997)
@@ -159,7 +159,7 @@
     bool canProduceAudio() const final;
     Document* hostingDocument() const final { return document(); }
     bool processingUserGestureForMedia() const final;
-    bool shouldOverridePauseDuringRouteChange() const { return true; }
+    bool shouldOverridePauseDuringRouteChange() const final { return true; }
 
     // ActiveDOMObject API.
     void stop() final;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to