| Index: webrtc/api/video/video_content_type.h
|
| diff --git a/webrtc/api/video/video_content_type.h b/webrtc/api/video/video_content_type.h
|
| index 8addb13851f1f35339cf22dd8b90b3f880f6e48f..f9c6a9841829a06cf58a0742e09b8d953df4fe34 100644
|
| --- a/webrtc/api/video/video_content_type.h
|
| +++ b/webrtc/api/video/video_content_type.h
|
| @@ -23,19 +23,17 @@ enum class VideoContentType : uint8_t {
|
| };
|
|
|
| namespace videocontenttypehelpers {
|
| - bool SetExperimentId(VideoContentType* content_type,
|
| - uint8_t experiment_id);
|
| - bool SetSimulcastId(VideoContentType* content_type,
|
| - uint8_t simulcast_id);
|
| +bool SetExperimentId(VideoContentType* content_type, uint8_t experiment_id);
|
| +bool SetSimulcastId(VideoContentType* content_type, uint8_t simulcast_id);
|
|
|
| - uint8_t GetExperimentId(const VideoContentType& content_type);
|
| - uint8_t GetSimulcastId(const VideoContentType& content_type);
|
| +uint8_t GetExperimentId(const VideoContentType& content_type);
|
| +uint8_t GetSimulcastId(const VideoContentType& content_type);
|
|
|
| - bool IsScreenshare(const VideoContentType& content_type);
|
| +bool IsScreenshare(const VideoContentType& content_type);
|
|
|
| - bool IsValidContentType(uint8_t value);
|
| +bool IsValidContentType(uint8_t value);
|
|
|
| - const char* ToString(const VideoContentType& content_type);
|
| +const char* ToString(const VideoContentType& content_type);
|
| } // namespace videocontenttypehelpers
|
|
|
| } // namespace webrtc
|
|
|