summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLStreamingMediaManager.h
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2020-07-02 13:15:46 -0400
committerJoel Fischer <joeljfischer@gmail.com>2020-07-02 13:15:46 -0400
commitc62394f2f3afb71d2826ea48f3dd6adfff61e916 (patch)
tree219caa815ebf244b150959deee13a566fb4ba0e2 /SmartDeviceLink/SDLStreamingMediaManager.h
parent31738faee39a5ca313e088bd12539b49b06f1b94 (diff)
downloadsdl_ios-c62394f2f3afb71d2826ea48f3dd6adfff61e916.tar.gz
Fixes from code review
* Fix encryption lifecycle manager not updating internal permissions correctly * Fix lifecycle log being error instead of debug * Add documentation for various methods * Add NS_ASSUME_NONNULL tags to various classes * Fix canceling SDLLifecycleProtocolHandler canceling the rpcStartServiceTimer when it's not the RPC service * Fix not sending an error when RPC EndService is NAK'd
Diffstat (limited to 'SmartDeviceLink/SDLStreamingMediaManager.h')
-rw-r--r--SmartDeviceLink/SDLStreamingMediaManager.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLStreamingMediaManager.h b/SmartDeviceLink/SDLStreamingMediaManager.h
index b384659e3..495f466cf 100644
--- a/SmartDeviceLink/SDLStreamingMediaManager.h
+++ b/SmartDeviceLink/SDLStreamingMediaManager.h
@@ -191,12 +191,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 __deprecated_msg("Use startWithNewProtocol: instead");
+- (void)startAudioWithProtocol:(SDLProtocol *)protocol __deprecated_msg("Use startWithProtocol: 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 __deprecated_msg("Use startWithNewProtocol: instead");
+- (void)startVideoWithProtocol:(SDLProtocol *)protocol __deprecated_msg("Use startWithProtocol: instead");
@end