Title: [142328] trunk/Source/WebCore
Revision
142328
Author
[email protected]
Date
2013-02-08 16:13:47 -0800 (Fri, 08 Feb 2013)

Log Message

Unreviewed build fix. MSVC (and other compilers) need a default: case in switch statement.

* platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp:
(WebCore::notificationName):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (142327 => 142328)


--- trunk/Source/WebCore/ChangeLog	2013-02-08 23:31:29 UTC (rev 142327)
+++ trunk/Source/WebCore/ChangeLog	2013-02-09 00:13:47 UTC (rev 142328)
@@ -1,5 +1,12 @@
 2013-02-08  Jer Noble  <[email protected]>
 
+        Unreviewed build fix. MSVC (and other compilers) need a default: case in switch statement.
+
+        * platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp:
+        (WebCore::notificationName):
+
+2013-02-08  Jer Noble  <[email protected]>
+
         Bring WebKit up to speed with latest Encrypted Media spec.
         https://bugs.webkit.org/show_bug.cgi?id=97037
 

Modified: trunk/Source/WebCore/platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp (142327 => 142328)


--- trunk/Source/WebCore/platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp	2013-02-08 23:31:29 UTC (rev 142327)
+++ trunk/Source/WebCore/platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp	2013-02-09 00:13:47 UTC (rev 142328)
@@ -701,6 +701,7 @@
 #define DEFINE_TYPE_STRING_CASE(type) case MediaPlayerPrivateAVFoundation::Notification::type: return #type;
     switch (notification.type()) {
         FOR_EACH_MEDIAPLAYERPRIVATEAVFOUNDATION_NOTIFICATION_TYPE(DEFINE_TYPE_STRING_CASE)
+        default: return "";
     }
 #undef DEFINE_TYPE_STRING_CASE
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to