Title: [242906] trunk/Source/WebCore
Revision
242906
Author
[email protected]
Date
2019-03-13 14:05:23 -0700 (Wed, 13 Mar 2019)

Log Message

Unreviewed build fix after r242901.

* platform/audio/cocoa/MediaSessionManagerCocoa.mm:
(MediaSessionManagerCocoa::updateNowPlayingInfo):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (242905 => 242906)


--- trunk/Source/WebCore/ChangeLog	2019-03-13 20:51:37 UTC (rev 242905)
+++ trunk/Source/WebCore/ChangeLog	2019-03-13 21:05:23 UTC (rev 242906)
@@ -1,5 +1,12 @@
 2019-03-13  Chris Dumez  <[email protected]>
 
+        Unreviewed build fix after r242901.
+
+        * platform/audio/cocoa/MediaSessionManagerCocoa.mm:
+        (MediaSessionManagerCocoa::updateNowPlayingInfo):
+
+2019-03-13  Chris Dumez  <[email protected]>
+
         Use a ServiceWorker process per registrable domain
         https://bugs.webkit.org/show_bug.cgi?id=195649
 

Modified: trunk/Source/WebCore/platform/audio/cocoa/MediaSessionManagerCocoa.mm (242905 => 242906)


--- trunk/Source/WebCore/platform/audio/cocoa/MediaSessionManagerCocoa.mm	2019-03-13 20:51:37 UTC (rev 242905)
+++ trunk/Source/WebCore/platform/audio/cocoa/MediaSessionManagerCocoa.mm	2019-03-13 21:05:23 UTC (rev 242906)
@@ -213,7 +213,7 @@
             UNUSED_PARAM(error);
 #else
             if (error)
-                ALWAYS_LOG(LOGIDENTIFIER, "MRMediaRemoteSetNowPlayingApplicationPlaybackStateForOrigin(stopped) failed with error ", error);
+                ALWAYS_LOG(LOGIDENTIFIER, "MRMediaRemoteSetNowPlayingApplicationPlaybackStateForOrigin(stopped) failed with error ", static_cast<uint32_t>(error));
 #endif
         });
 
@@ -268,7 +268,7 @@
 #if LOG_DISABLED
         UNUSED_PARAM(error);
 #else
-        ALWAYS_LOG(LOGIDENTIFIER, "MRMediaRemoteSetNowPlayingApplicationPlaybackStateForOrigin(playing) failed with error ", error);
+        ALWAYS_LOG(LOGIDENTIFIER, "MRMediaRemoteSetNowPlayingApplicationPlaybackStateForOrigin(playing) failed with error ", static_cast<uint32_t>(error));
 #endif
     });
     MRMediaRemoteSetNowPlayingInfo(info.get());
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to