Title: [221184] trunk/Source/WebCore
Revision
221184
Author
calva...@igalia.com
Date
2017-08-25 03:59:32 -0700 (Fri, 25 Aug 2017)

Log Message

[EME][ClearKey] Fixed warning in CDM compilation
https://bugs.webkit.org/show_bug.cgi?id=175979

Reviewed by Žan Doberšek.

* platform/encryptedmedia/clearkey/CDMClearKey.h: Added a final to
avoid the compiler warning about the missing override keyword.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (221183 => 221184)


--- trunk/Source/WebCore/ChangeLog	2017-08-25 08:10:37 UTC (rev 221183)
+++ trunk/Source/WebCore/ChangeLog	2017-08-25 10:59:32 UTC (rev 221184)
@@ -1,3 +1,13 @@
+2017-08-25  Xabier Rodriguez Calvar  <calva...@igalia.com>
+
+        [EME][ClearKey] Fixed warning in CDM compilation
+        https://bugs.webkit.org/show_bug.cgi?id=175979
+
+        Reviewed by Žan Doberšek.
+
+        * platform/encryptedmedia/clearkey/CDMClearKey.h: Added a final to
+        avoid the compiler warning about the missing override keyword.
+
 2017-08-25  Miguel Gomez  <mago...@igalia.com>
 
         [GTK] Completely garbled display in Transifex in accelerated compositing mode

Modified: trunk/Source/WebCore/platform/encryptedmedia/clearkey/CDMClearKey.h (221183 => 221184)


--- trunk/Source/WebCore/platform/encryptedmedia/clearkey/CDMClearKey.h	2017-08-25 08:10:37 UTC (rev 221183)
+++ trunk/Source/WebCore/platform/encryptedmedia/clearkey/CDMClearKey.h	2017-08-25 10:59:32 UTC (rev 221184)
@@ -76,7 +76,7 @@
     CDMInstanceClearKey();
     virtual ~CDMInstanceClearKey();
 
-    ImplementationType implementationType() const { return ImplementationType::ClearKey; }
+    ImplementationType implementationType() const final { return ImplementationType::ClearKey; }
 
     SuccessValue initializeWithConfiguration(const CDMKeySystemConfiguration&) override;
     SuccessValue setDistinctiveIdentifiersAllowed(bool) override;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to