Changeset 171259 in webkit


Ignore:
Timestamp:
Jul 18, 2014 10:25:48 PM (10 years ago)
Author:
eric.carlson@apple.com
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.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r171252 r171259  
     12014-07-18  Eric Carlson  <eric.carlson@apple.com>
     2
     3        [iOS] ignore requests to set volume
     4        https://bugs.webkit.org/show_bug.cgi?id=135081
     5
     6        Reviewed by Jer Noble.
     7
     8        * platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:
     9        (WebCore::MediaPlayerPrivateAVFoundationObjC::setVolume): Do nothing on iOS.
     10
    1112014-07-18  Andy Estes  <aestes@apple.com>
    212
  • trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm

    r171157 r171259  
    11271127void MediaPlayerPrivateAVFoundationObjC::setVolume(float volume)
    11281128{
     1129#if PLATFORM(IOS)
     1130    return;
     1131#endif
     1132
    11291133    if (!metaDataAvailable())
    11301134        return;
Note: See TracChangeset for help on using the changeset viewer.