Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Unified Diff: webrtc/api/video/video_content_type.cc

Issue 3006333002: Fix code formating in api/video/video_content_type.* (Closed)
Patch Set: Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/api/video/video_content_type.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/video/video_content_type.cc
diff --git a/webrtc/api/video/video_content_type.cc b/webrtc/api/video/video_content_type.cc
index 351cfeefb600f1c189fe5167a47439c3079b8584..3839ff4f2bcdc52746f997601cb8ad646d6d5aa0 100644
--- a/webrtc/api/video/video_content_type.cc
+++ b/webrtc/api/video/video_content_type.cc
@@ -48,8 +48,7 @@ static constexpr uint8_t kTotalBitsSize =
kScreenshareBitsSize + kSimulcastBitsSize + kExperimentBitsSize;
} // namespace
-bool SetExperimentId(VideoContentType* content_type,
- uint8_t experiment_id) {
+bool SetExperimentId(VideoContentType* content_type, uint8_t experiment_id) {
// Store in bits 2-4.
if (experiment_id >= (1 << kExperimentBitsSize))
return false;
@@ -59,8 +58,7 @@ bool SetExperimentId(VideoContentType* content_type,
return true;
}
-bool SetSimulcastId(VideoContentType* content_type,
- uint8_t simulcast_id) {
+bool SetSimulcastId(VideoContentType* content_type, uint8_t simulcast_id) {
// Store in bits 5-6.
if (simulcast_id >= (1 << kSimulcastBitsSize))
return false;
« no previous file with comments | « webrtc/api/video/video_content_type.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698