Changeset 216107 in webkit


Ignore:
Timestamp:
May 2, 2017 5:11:11 PM (7 years ago)
Author:
commit-queue@webkit.org
Message:

Typo in AVAudioSessionCaptureDeviceManager.mm
https://bugs.webkit.org/show_bug.cgi?id=171572

Patch by Andrew Gold <agold@apple.com> on 2017-05-02
Reviewed by Jer Noble.

We attempt to call +[AVAudioSession sharedSession], but the actual method is
called +[AVAudioSession sharedInstance].

  • platform/mediastream/ios/AVAudioSessionCaptureDeviceManager.mm:

(WebCore::AVAudioSessionCaptureDeviceManager::refreshAudioCaptureDevices):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r216106 r216107  
     12017-05-02  Andrew Gold  <agold@apple.com>
     2
     3        Typo in AVAudioSessionCaptureDeviceManager.mm
     4        https://bugs.webkit.org/show_bug.cgi?id=171572
     5
     6        Reviewed by Jer Noble.
     7
     8        We attempt to call +[AVAudioSession sharedSession], but the actual method is
     9        called +[AVAudioSession sharedInstance].
     10
     11        * platform/mediastream/ios/AVAudioSessionCaptureDeviceManager.mm:
     12        (WebCore::AVAudioSessionCaptureDeviceManager::refreshAudioCaptureDevices):
     13
    1142017-05-02  Simon Fraser  <simon.fraser@apple.com>
    215
  • trunk/Source/WebCore/platform/mediastream/ios/AVAudioSessionCaptureDeviceManager.mm

    r216016 r216107  
    117117            refreshAudioCaptureDevices();
    118118        }]);
    119         [[AVAudioSession sharedSession] addObserver:m_listener.get() forKeyPath:@"availableInputs" options:0 context:AvailableInputsContext];
     119        [[AVAudioSession sharedInstance] addObserver:m_listener.get() forKeyPath:@"availableInputs" options:0 context:AvailableInputsContext];
    120120    }
    121121
Note: See TracChangeset for help on using the changeset viewer.