summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLStreamingMediaManager.h
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2020-03-09 14:36:42 -0400
committerNicoleYarroch <nicole@livio.io>2020-03-09 14:36:42 -0400
commite7be40af6b2f72f3768e2a0fd6393f83f32f89bd (patch)
tree0ab5492f60ecb8b5ac853f7a34d48ac0b332385c /SmartDeviceLink/SDLStreamingMediaManager.h
parent7e413595726fdbae18b58b27c1264ea4303db8b4 (diff)
downloadsdl_ios-e7be40af6b2f72f3768e2a0fd6393f83f32f89bd.tar.gz
Renamed method
Diffstat (limited to 'SmartDeviceLink/SDLStreamingMediaManager.h')
-rw-r--r--SmartDeviceLink/SDLStreamingMediaManager.h6
1 files changed, 3 insertions, 3 deletions
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