Title: [239368] trunk/Source/WebCore
- Revision
- 239368
- Author
- [email protected]
- Date
- 2018-12-18 21:31:11 -0800 (Tue, 18 Dec 2018)
Log Message
Unreviewed, add a missing UNUSED_PARAM()
* Modules/mediarecorder/MediaRecorder.cpp:
(WebCore::MediaRecorder::getPrivateImpl):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (239367 => 239368)
--- trunk/Source/WebCore/ChangeLog 2018-12-19 05:01:04 UTC (rev 239367)
+++ trunk/Source/WebCore/ChangeLog 2018-12-19 05:31:11 UTC (rev 239368)
@@ -1,3 +1,10 @@
+2018-12-18 Michael Catanzaro <[email protected]>
+
+ Unreviewed, add a missing UNUSED_PARAM()
+
+ * Modules/mediarecorder/MediaRecorder.cpp:
+ (WebCore::MediaRecorder::getPrivateImpl):
+
2018-12-18 Justin Michaud <[email protected]>
Update CSS Properties and Values API to use new cycle fallback behaviour
Modified: trunk/Source/WebCore/Modules/mediarecorder/MediaRecorder.cpp (239367 => 239368)
--- trunk/Source/WebCore/Modules/mediarecorder/MediaRecorder.cpp 2018-12-19 05:01:04 UTC (rev 239367)
+++ trunk/Source/WebCore/Modules/mediarecorder/MediaRecorder.cpp 2018-12-19 05:31:11 UTC (rev 239368)
@@ -66,8 +66,10 @@
#if PLATFORM(COCOA)
return MediaRecorderPrivateAVFImpl::create(stream);
+#else
+ UNUSED_PARAM(stream);
+ return nullptr;
#endif
- return nullptr;
}
MediaRecorder::MediaRecorder(Document& document, Ref<MediaStream>&& stream, std::unique_ptr<MediaRecorderPrivate>&& privateImpl, Options&& option)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes