Title: [171259] trunk/Source/WebCore
- Revision
- 171259
- Author
- [email protected]
- Date
- 2014-07-18 22:25:48 -0700 (Fri, 18 Jul 2014)
Log Message
[iOS] ignore requests to set volume
https://bugs.webkit.org/show_bug.cgi?id=135081
Reviewed by Jer Noble.
* platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:
(WebCore::MediaPlayerPrivateAVFoundationObjC::setVolume): Do nothing on iOS.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (171258 => 171259)
--- trunk/Source/WebCore/ChangeLog 2014-07-19 04:59:32 UTC (rev 171258)
+++ trunk/Source/WebCore/ChangeLog 2014-07-19 05:25:48 UTC (rev 171259)
@@ -1,3 +1,13 @@
+2014-07-18 Eric Carlson <[email protected]>
+
+ [iOS] ignore requests to set volume
+ https://bugs.webkit.org/show_bug.cgi?id=135081
+
+ Reviewed by Jer Noble.
+
+ * platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:
+ (WebCore::MediaPlayerPrivateAVFoundationObjC::setVolume): Do nothing on iOS.
+
2014-07-18 Andy Estes <[email protected]>
[iOS] Tapping "Allow Website" on a restricted page does not bring up the keypad
Modified: trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm (171258 => 171259)
--- trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm 2014-07-19 04:59:32 UTC (rev 171258)
+++ trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm 2014-07-19 05:25:48 UTC (rev 171259)
@@ -1126,6 +1126,10 @@
void MediaPlayerPrivateAVFoundationObjC::setVolume(float volume)
{
+#if PLATFORM(IOS)
+ return;
+#endif
+
if (!metaDataAvailable())
return;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes