From e7be40af6b2f72f3768e2a0fd6393f83f32f89bd Mon Sep 17 00:00:00 2001 From: NicoleYarroch Date: Mon, 9 Mar 2020 14:36:42 -0400 Subject: Renamed method --- SmartDeviceLink/SDLStreamingMediaManager.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'SmartDeviceLink/SDLStreamingMediaManager.h') diff --git a/SmartDeviceLink/SDLStreamingMediaManager.h b/SmartDeviceLink/SDLStreamingMediaManager.h index f7d89976b..f0c71fd36 100644 --- a/SmartDeviceLink/SDLStreamingMediaManager.h +++ b/SmartDeviceLink/SDLStreamingMediaManager.h @@ -185,7 +185,7 @@ NS_ASSUME_NONNULL_BEGIN * Starts the video/audio services on the passed protocol. This method is used internally. * @param protocol The protocol to use for the audio/video services */ -- (void)startSecondaryTransportOnProtocol:(SDLProtocol *)protocol; +- (void)startSecondaryTransportWithProtocol:(SDLProtocol *)protocol; /** * Start the manager. This is used internally. To use an SDLStreamingMediaManager, you should use the manager found on `SDLManager`. @@ -195,12 +195,12 @@ NS_ASSUME_NONNULL_BEGIN /** * Start the audio feature of the manager. This is used internally. To use an SDLStreamingMediaManager, you should use the manager found on `SDLManager`. */ -- (void)startAudioWithProtocol:(SDLProtocol *)protocol; +- (void)startAudioWithProtocol:(SDLProtocol *)protocol __deprecated_msg("Use startSecondaryTransportWithProtocol: instead"); /** * Start the video feature of the manager. This is used internally. To use an SDLStreamingMediaManager, you should use the manager found on `SDLManager`. */ -- (void)startVideoWithProtocol:(SDLProtocol *)protocol; +- (void)startVideoWithProtocol:(SDLProtocol *)protocol __deprecated_msg("Use startSecondaryTransportWithProtocol: instead"); @end -- cgit v1.2.1