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

Issue 2717973005: Test field trial group with startswith rather than equals. (Closed)

Created:
3 years, 9 months ago by sprang_webrtc
Modified:
3 years, 9 months ago
Reviewers:
tommi, danilchap
CC:
webrtc-reviews_webrtc.org, video-team_agora.io, danilchap, AleBzk, peah-webrtc, zhuangzesen_agora.io, zhengzhonghou_agora.io, stefan-webrtc, tlegrand-webrtc, tterriberry_mozilla.com, audio-team_agora.io, hlundin-webrtc, kwiberg-webrtc, minyue-webrtc, the sun, yujie_mao (webrtc), mflodman
Target Ref:
refs/heads/master
Project:
webrtc
Visibility:
Public.

Description

Test field trial group with startswith rather than equals. BUG=webrtc:7266 Review-Url: https://codereview.webrtc.org/2717973005 Cr-Commit-Position: refs/heads/master@{#16915} Committed: https://chromium.googlesource.com/external/webrtc/+/c1b57a15bf421503bb654fa731e06feee7d85694

Patch Set 1 #

Patch Set 2 : Added IsEnabled() convenience function #

Total comments: 8

Patch Set 3 : const char*, two more IsEnabled #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+42 lines, -46 lines) Patch
M webrtc/call/call_perf_tests.cc View 1 1 chunk +1 line, -1 line 1 comment Download
M webrtc/media/engine/internalencoderfactory.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M webrtc/media/engine/simulcast.cc View 1 1 chunk +1 line, -2 lines 0 comments Download
M webrtc/media/engine/webrtcvideocapturer.cc View 1 chunk +1 line, -5 lines 0 comments Download
M webrtc/media/engine/webrtcvideoengine2.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M webrtc/media/engine/webrtcvoiceengine.cc View 1 3 chunks +4 lines, -6 lines 0 comments Download
M webrtc/modules/audio_coding/audio_network_adaptor/bitrate_controller.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/test/neteq_performance_unittest.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.cc View 1 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/congestion_controller/delay_based_bwe.cc View 1 1 chunk +1 line, -2 lines 0 comments Download
M webrtc/modules/congestion_controller/transport_feedback_adapter.cc View 1 1 chunk +2 lines, -3 lines 0 comments Download
M webrtc/modules/remote_bitrate_estimator/bwe_defines.cc View 1 1 chunk +1 line, -2 lines 0 comments Download
M webrtc/modules/remote_bitrate_estimator/test/bwe_test.cc View 1 2 chunks +2 lines, -2 lines 1 comment Download
M webrtc/modules/rtp_rtcp/source/rtp_sender.cc View 1 1 chunk +1 line, -2 lines 0 comments Download
M webrtc/pc/peerconnection.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/sdk/android/src/jni/androidmediaencoder_jni.cc View 1 1 chunk +3 lines, -3 lines 0 comments Download
M webrtc/sdk/objc/Framework/Classes/videotoolboxvideocodecfactory.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M webrtc/system_wrappers/include/field_trial.h View 1 2 1 chunk +4 lines, -0 lines 0 comments Download
M webrtc/system_wrappers/source/field_trial_default.cc View 1 2 1 chunk +4 lines, -0 lines 0 comments Download
M webrtc/test/rtp_rtcp_observer.h View 1 1 chunk +1 line, -1 line 0 comments Download
M webrtc/video/video_quality_test.cc View 1 1 chunk +1 line, -2 lines 0 comments Download
M webrtc/video/video_send_stream.cc View 1 1 chunk +2 lines, -2 lines 0 comments Download

Messages

Total messages: 26 (9 generated)
sprang_webrtc
tommi@, can you have a look as root owner so that we don't need a ...
3 years, 9 months ago (2017-02-28 10:31:58 UTC) #2
tommi
Can we use this opportunity to add a couple of methods for the two most ...
3 years, 9 months ago (2017-02-28 10:51:43 UTC) #3
sprang_webrtc
On 2017/02/28 10:51:43, tommi (webrtc) wrote: > Can we use this opportunity to add a ...
3 years, 9 months ago (2017-02-28 11:30:14 UTC) #4
sprang_webrtc
Added IsEnabled(), ptal
3 years, 9 months ago (2017-02-28 11:42:31 UTC) #5
tommi
On 2017/02/28 11:30:14, språng wrote: > On 2017/02/28 10:51:43, tommi (webrtc) wrote: > > Can ...
3 years, 9 months ago (2017-02-28 11:44:16 UTC) #6
sprang_webrtc
On 2017/02/28 11:42:31, språng wrote: > Added IsEnabled(), ptal I omitted the IsDisabled() case, which ...
3 years, 9 months ago (2017-02-28 11:44:22 UTC) #7
tommi
https://codereview.webrtc.org/2717973005/diff/20001/webrtc/modules/audio_coding/audio_network_adaptor/bitrate_controller.cc File webrtc/modules/audio_coding/audio_network_adaptor/bitrate_controller.cc (right): https://codereview.webrtc.org/2717973005/diff/20001/webrtc/modules/audio_coding/audio_network_adaptor/bitrate_controller.cc#newcode57 webrtc/modules/audio_coding/audio_network_adaptor/bitrate_controller.cc:57: .find("Enabled")); RTC_DCHECK(webrtc::field_trial::IsEnabled("WebRTC-SendSideBwe-WithOverhead")) ? https://codereview.webrtc.org/2717973005/diff/20001/webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.cc File webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.cc (right): https://codereview.webrtc.org/2717973005/diff/20001/webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.cc#newcode187 webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.cc:187: ...
3 years, 9 months ago (2017-02-28 11:52:41 UTC) #8
sprang_webrtc
https://codereview.webrtc.org/2717973005/diff/20001/webrtc/modules/audio_coding/audio_network_adaptor/bitrate_controller.cc File webrtc/modules/audio_coding/audio_network_adaptor/bitrate_controller.cc (right): https://codereview.webrtc.org/2717973005/diff/20001/webrtc/modules/audio_coding/audio_network_adaptor/bitrate_controller.cc#newcode57 webrtc/modules/audio_coding/audio_network_adaptor/bitrate_controller.cc:57: .find("Enabled")); On 2017/02/28 11:52:41, tommi (webrtc) wrote: > RTC_DCHECK(webrtc::field_trial::IsEnabled("WebRTC-SendSideBwe-WithOverhead")) ...
3 years, 9 months ago (2017-02-28 12:18:31 UTC) #9
tommi
lgtm
3 years, 9 months ago (2017-02-28 12:41:01 UTC) #10
tommi
On 2017/02/28 12:41:01, tommi (webrtc) wrote: > lgtm and thanks for making the extra changes ...
3 years, 9 months ago (2017-02-28 12:41:15 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.webrtc.org/2717973005/40001
3 years, 9 months ago (2017-02-28 12:45:25 UTC) #13
commit-bot: I haz the power
Try jobs failed on following builders: linux_ubsan_vptr on master.tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/linux_ubsan_vptr/builds/10602)
3 years, 9 months ago (2017-02-28 13:33:03 UTC) #15
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.webrtc.org/2717973005/40001
3 years, 9 months ago (2017-02-28 13:35:13 UTC) #17
commit-bot: I haz the power
Try jobs failed on following builders: linux_ubsan_vptr on master.tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/linux_ubsan_vptr/builds/10609)
3 years, 9 months ago (2017-02-28 14:14:16 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.webrtc.org/2717973005/40001
3 years, 9 months ago (2017-02-28 16:41:29 UTC) #21
commit-bot: I haz the power
Committed patchset #3 (id:40001) as https://chromium.googlesource.com/external/webrtc/+/c1b57a15bf421503bb654fa731e06feee7d85694
3 years, 9 months ago (2017-02-28 16:50:53 UTC) #24
danilchap
3 years, 9 months ago (2017-03-01 12:07:15 UTC) #26
Message was sent while issue was closed.
https://codereview.webrtc.org/2717973005/diff/40001/webrtc/call/call_perf_tes...
File webrtc/call/call_perf_tests.cc (right):

https://codereview.webrtc.org/2717973005/diff/40001/webrtc/call/call_perf_tes...
webrtc/call/call_perf_tests.cc:293: if
(field_trial::IsEnabled("WebRTC-QuickPerfTest")) {
should this be negation?

https://codereview.webrtc.org/2717973005/diff/40001/webrtc/modules/remote_bit...
File webrtc/modules/remote_bitrate_estimator/test/bwe_test.cc (right):

https://codereview.webrtc.org/2717973005/diff/40001/webrtc/modules/remote_bit...
webrtc/modules/remote_bitrate_estimator/test/bwe_test.cc:383: if
(field_trial::IsEnabled("WebRTC-QuickPerfTest")) {
should this be negation?

Powered by Google App Engine
This is Rietveld 408576698