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

Issue 1335923002: Add RTC_ prefix to (D)CHECKs and related macros. (Closed)

Created:
5 years, 3 months ago by Henrik Grunell WebRTC
Modified:
5 years, 3 months ago
CC:
webrtc-reviews_webrtc.org, interface-changes_webrtc.org, rwolff_gocast.it, yujie_mao (webrtc), stefan-webrtc, henrika_webrtc, hlundin-webrtc, tlegrand-webrtc, tterriberry_mozilla.com, qiang.lu, niklas.enbom, mflodman, andresp, perkj_webrtc, aluebs-webrtc, bjornv1, kwiberg-webrtc
Base URL:
https://chromium.googlesource.com/external/webrtc.git@master
Target Ref:
refs/pending/heads/master
Project:
webrtc
Visibility:
Public.

Description

Add RTC_ prefix to (D)CHECKs and related macros. We must remove dependency on Chromium, i.e. we can't use Chromium's base/logging.h. That means we need to define these macros in WebRTC also when doing Chromium builds. And this causes redefinition. Alternative solutions: * Check if we already have defined e.g. CHECK, and don't define them in that case. This makes us depend on include order in Chromium, which is not acceptable. * Don't allow using the macros in WebRTC headers. Error prone since if someone adds it there by mistake it may compile fine, but later break if a header in added or order is changed in Chromium. That will be confusing and hard to enforce. * Ensure that headers that are included by an embedder don't include our macros. This would require some heavy refactoring to be maintainable and enforcable. * Changes in Chromium for this is obviously not an option. BUG=chromium:468375 NOTRY=true Committed: https://crrev.com/91d6edef35e7275879c30ce16ecb8b6dc73c6e4a Cr-Commit-Position: refs/heads/master@{#9964}

Patch Set 1 #

Patch Set 2 : Added missing include. Rebase. #

Patch Set 3 : Rebase. #

Patch Set 4 : git cl format #

Patch Set 5 : Cleaning. #

Patch Set 6 : Rebase. #

Patch Set 7 : Fixes. #

Patch Set 8 : Rebase. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1667 lines, -1648 lines) Patch
M talk/app/webrtc/androidvideocapturer.cc View 7 chunks +14 lines, -13 lines 0 comments Download
M talk/app/webrtc/datachannelinterface.h View 1 chunk +1 line, -1 line 0 comments Download
M talk/app/webrtc/dtlsidentitystore.cc View 8 chunks +15 lines, -15 lines 0 comments Download
M talk/app/webrtc/dtlsidentitystore_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M talk/app/webrtc/fakemetricsobserver.cc View 1 2 3 3 chunks +10 lines, -10 lines 0 comments Download
M talk/app/webrtc/java/jni/androidmediadecoder_jni.cc View 1 2 3 5 chunks +7 lines, -7 lines 0 comments Download
M talk/app/webrtc/java/jni/androidmediaencoder_jni.cc View 1 2 3 8 chunks +16 lines, -20 lines 0 comments Download
M talk/app/webrtc/java/jni/androidvideocapturer_jni.cc View 1 2 3 3 chunks +6 lines, -5 lines 0 comments Download
M talk/app/webrtc/java/jni/classreferenceholder.cc View 3 chunks +6 lines, -6 lines 0 comments Download
M talk/app/webrtc/java/jni/jni_helpers.h View 1 2 3 2 chunks +5 lines, -5 lines 0 comments Download
M talk/app/webrtc/java/jni/jni_helpers.cc View 1 2 3 11 chunks +28 lines, -27 lines 0 comments Download
M talk/app/webrtc/java/jni/native_handle_impl.h View 1 chunk +1 line, -1 line 0 comments Download
M talk/app/webrtc/java/jni/peerconnection_jni.cc View 1 2 3 21 chunks +25 lines, -25 lines 0 comments Download
M talk/app/webrtc/mediacontroller.cc View 1 2 3 4 3 chunks +4 lines, -4 lines 0 comments Download
M talk/app/webrtc/objc/RTCFileLogger.mm View 1 chunk +1 line, -1 line 0 comments Download
M talk/app/webrtc/objc/avfoundationvideocapturer.mm View 1 2 3 3 chunks +4 lines, -3 lines 0 comments Download
M talk/app/webrtc/peerconnectionfactory.cc View 10 chunks +13 lines, -13 lines 0 comments Download
M talk/app/webrtc/statscollector.cc View 1 2 3 23 chunks +34 lines, -34 lines 0 comments Download
M talk/app/webrtc/statstypes.cc View 1 2 3 11 chunks +26 lines, -24 lines 0 comments Download
M talk/app/webrtc/test/fakedtlsidentitystore.h View 1 chunk +1 line, -1 line 0 comments Download
M talk/app/webrtc/webrtcsession.cc View 1 2 5 chunks +5 lines, -5 lines 0 comments Download
M talk/app/webrtc/webrtcsession_unittest.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M talk/app/webrtc/webrtcsessiondescriptionfactory.cc View 3 chunks +3 lines, -3 lines 0 comments Download
M talk/media/base/capturemanager.cc View 1 2 3 15 chunks +23 lines, -23 lines 0 comments Download
M talk/media/sctp/sctpdataengine.cc View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M talk/media/webrtc/fakewebrtccall.cc View 3 chunks +3 lines, -3 lines 0 comments Download
M talk/media/webrtc/fakewebrtcvoiceengine.h View 2 chunks +2 lines, -2 lines 0 comments Download
M talk/media/webrtc/webrtcvideocapturer.cc View 7 chunks +13 lines, -13 lines 0 comments Download
M talk/media/webrtc/webrtcvideoengine2.cc View 1 2 3 21 chunks +28 lines, -28 lines 0 comments Download
M talk/media/webrtc/webrtcvideoengine2_unittest.cc View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M talk/media/webrtc/webrtcvideoframe.cc View 3 chunks +4 lines, -4 lines 0 comments Download
M talk/media/webrtc/webrtcvoiceengine.cc View 1 2 20 chunks +30 lines, -30 lines 0 comments Download
M talk/media/webrtc/webrtcvoiceengine_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M talk/session/media/channelmanager_unittest.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/base/asyncinvoker.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/base/bitbuffer.cc View 1 2 3 7 chunks +13 lines, -13 lines 0 comments Download
M webrtc/base/checks.h View 1 2 3 6 chunks +80 lines, -82 lines 0 comments Download
M webrtc/base/checks.cc View 1 2 chunks +0 lines, -5 lines 0 comments Download
M webrtc/base/criticalsection.h View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/base/criticalsection.cc View 5 chunks +8 lines, -8 lines 0 comments Download
M webrtc/base/event.cc View 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/base/filerotatingstream.cc View 12 chunks +15 lines, -15 lines 0 comments Download
M webrtc/base/flags.cc View 1 2 3 2 chunks +3 lines, -2 lines 0 comments Download
M webrtc/base/logsinks.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/base/network.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/base/platform_thread.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/base/ratetracker.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/base/rtccertificate.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/base/safe_conversions.h View 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/base/stringencode.h View 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/base/stringencode.cc View 1 2 3 4 5 6 16 chunks +18 lines, -18 lines 0 comments Download
M webrtc/base/stringutils.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/base/thread_checker.h View 1 2 3 4 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/base/thread_checker_impl.h View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/base/thread_checker_unittest.cc View 1 2 3 4 1 chunk +1 line, -3 lines 0 comments Download
M webrtc/base/timeutils.cc View 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/base/virtualsocketserver.cc View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M webrtc/common_audio/audio_converter.h View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M webrtc/common_audio/audio_converter.cc View 1 2 3 2 chunks +5 lines, -4 lines 0 comments Download
M webrtc/common_audio/audio_ring_buffer.cc View 3 chunks +6 lines, -6 lines 0 comments Download
M webrtc/common_audio/blocker.cc View 2 chunks +5 lines, -5 lines 0 comments Download
M webrtc/common_audio/channel_buffer.h View 4 chunks +5 lines, -5 lines 0 comments Download
M webrtc/common_audio/include/audio_util.h View 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/common_audio/lapped_transform.cc View 3 chunks +9 lines, -9 lines 0 comments Download
M webrtc/common_audio/lapped_transform_unittest.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/common_audio/real_fourier.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/common_audio/real_fourier_ooura.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/common_audio/real_fourier_openmax.cc View 2 chunks +7 lines, -7 lines 0 comments Download
M webrtc/common_audio/resampler/push_sinc_resampler.cc View 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/common_audio/resampler/sinc_resampler_unittest.cc View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/common_audio/sparse_fir_filter.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/common_audio/vad/vad.cc View 2 chunks +4 lines, -4 lines 0 comments Download
M webrtc/common_audio/vad/vad_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/common_audio/wav_file.h View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M webrtc/common_audio/wav_file.cc View 1 2 3 6 chunks +18 lines, -21 lines 0 comments Download
M webrtc/common_audio/wav_header.cc View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/common_audio/window_generator.cc View 2 chunks +4 lines, -4 lines 0 comments Download
M webrtc/common_video/i420_buffer_pool.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/common_video/video_frame.cc View 2 chunks +6 lines, -6 lines 0 comments Download
M webrtc/common_video/video_frame_buffer.cc View 4 chunks +12 lines, -12 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/audio_encoder.cc View 1 2 3 1 chunk +3 lines, -3 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.cc View 1 2 3 8 chunks +21 lines, -17 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.cc View 3 chunks +5 lines, -5 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/g722/audio_encoder_g722.cc View 4 chunks +7 lines, -7 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/ilbc/audio_decoder_ilbc.cc View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_coding/codecs/ilbc/audio_encoder_ilbc.cc View 4 chunks +9 lines, -9 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/isac/audio_encoder_isac_t_impl.h View 1 2 3 7 chunks +20 lines, -20 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/isac/fix/interface/audio_encoder_isacfix.h View 1 chunk +3 lines, -3 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/opus/audio_decoder_opus.cc View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.cc View 1 2 3 6 chunks +31 lines, -28 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_coding/codecs/pcm16b/audio_decoder_pcm16b.cc View 1 2 3 4 5 6 7 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/red/audio_encoder_copy_red.cc View 1 2 3 2 chunks +7 lines, -7 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/red/audio_encoder_copy_red_unittest.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/main/acm2/acm_send_test.cc View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
M webrtc/modules/audio_coding/main/acm2/acm_send_test_oldapi.cc View 1 2 3 3 chunks +5 lines, -4 lines 0 comments Download
M webrtc/modules/audio_coding/main/acm2/audio_coding_module_impl.cc View 1 2 3 4 5 6 7 4 chunks +4 lines, -4 lines 0 comments Download
M webrtc/modules/audio_coding/main/acm2/codec_manager.cc View 1 2 3 4 5 6 7 7 chunks +8 lines, -8 lines 0 comments Download
M webrtc/modules/audio_coding/main/acm2/codec_owner.cc View 1 2 3 4 5 6 7 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/audio_decoder_impl.cc View 1 2 3 4 5 6 7 5 chunks +5 lines, -5 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/audio_decoder_unittest.cc View 1 2 3 4 5 6 7 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/dtmf_buffer.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/neteq_impl.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/statistics_calculator.cc View 1 2 3 3 chunks +4 lines, -3 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/time_stretch_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_coding/neteq/tools/constant_pcm_packet_source.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/tools/input_audio_file.cc View 1 2 3 1 chunk +7 lines, -5 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/tools/neteq_quality_test.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/tools/neteq_rtpplay.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_coding/neteq/tools/resample_input_audio_file.cc View 1 2 3 1 chunk +6 lines, -6 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/tools/rtc_event_log_source.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_coding/neteq/tools/rtp_file_source.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_coding/neteq/tools/rtpcat.cc View 1 chunk +3 lines, -3 lines 0 comments Download
M webrtc/modules/audio_device/android/audio_device_template.h View 1 2 3 6 chunks +13 lines, -13 lines 0 comments Download
M webrtc/modules/audio_device/android/audio_device_unittest.cc View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
M webrtc/modules/audio_device/android/audio_manager.cc View 7 chunks +16 lines, -16 lines 0 comments Download
M webrtc/modules/audio_device/android/audio_record_jni.h View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_device/android/audio_record_jni.cc View 1 2 3 9 chunks +24 lines, -23 lines 0 comments Download
M webrtc/modules/audio_device/android/audio_track_jni.h View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_device/android/audio_track_jni.cc View 1 2 3 10 chunks +25 lines, -24 lines 0 comments Download
M webrtc/modules/audio_device/android/build_info.h View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_device/android/ensure_initialized.cc View 1 2 3 4 3 chunks +6 lines, -8 lines 0 comments Download
M webrtc/modules/audio_device/android/opensles_common.h View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_device/android/opensles_player.h View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_device/android/opensles_player.cc View 1 2 3 17 chunks +43 lines, -42 lines 0 comments Download
M webrtc/modules/audio_device/fine_audio_buffer.h View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
M webrtc/modules/audio_device/fine_audio_buffer.cc View 1 2 3 4 chunks +8 lines, -8 lines 0 comments Download
M webrtc/modules/audio_device/ios/audio_device_ios.h View 1 2 3 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/modules/audio_device/ios/audio_device_ios.mm View 1 2 3 25 chunks +56 lines, -55 lines 0 comments Download
M webrtc/modules/audio_device/ios/audio_device_unittest_ios.cc View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
M webrtc/modules/audio_device/linux/audio_device_pulse_linux.h View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_device/linux/audio_device_pulse_linux.cc View 41 chunks +51 lines, -51 lines 0 comments Download
M webrtc/modules/audio_device/linux/audio_mixer_manager_pulse_linux.h View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_device/linux/audio_mixer_manager_pulse_linux.cc View 26 chunks +26 lines, -26 lines 0 comments Download
M webrtc/modules/audio_device/mac/audio_device_mac.cc View 1 2 3 14 chunks +18 lines, -18 lines 0 comments Download
M webrtc/modules/audio_processing/agc/agc.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_processing/beamformer/complex_matrix.h View 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_processing/beamformer/covariance_matrix_generator.cc View 3 chunks +6 lines, -6 lines 0 comments Download
M webrtc/modules/audio_processing/beamformer/matrix.h View 1 2 3 4 7 chunks +15 lines, -15 lines 0 comments Download
M webrtc/modules/audio_processing/beamformer/nonlinear_beamformer.cc View 7 chunks +20 lines, -20 lines 0 comments Download
M webrtc/modules/audio_processing/beamformer/nonlinear_beamformer_test.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer.cc View 5 chunks +7 lines, -7 lines 0 comments Download
M webrtc/modules/audio_processing/logging/aec_logging_file_handling.cc View 2 chunks +4 lines, -4 lines 0 comments Download
M webrtc/modules/audio_processing/splitting_filter.cc View 1 2 3 7 chunks +17 lines, -15 lines 0 comments Download
M webrtc/modules/audio_processing/test/audioproc_float.cc View 1 2 3 2 chunks +16 lines, -13 lines 0 comments Download
M webrtc/modules/audio_processing/test/test_utils.cc View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_processing/three_band_filter_bank.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_processing/vad/voice_activity_detector.cc View 1 2 3 2 chunks +9 lines, -9 lines 0 comments Download
M webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/desktop_capture/screen_capturer_x11.cc View 1 2 3 4 6 chunks +13 lines, -10 lines 0 comments Download
M webrtc/modules/pacing/packet_router.cc View 1 2 3 1 chunk +4 lines, -4 lines 0 comments Download
M webrtc/modules/remote_bitrate_estimator/aimd_rate_control.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/remote_bitrate_estimator/overuse_detector.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.h View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc View 5 chunks +5 lines, -5 lines 0 comments Download
M webrtc/modules/remote_bitrate_estimator/test/packet_sender.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter.cc View 1 2 3 chunks +4 lines, -4 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/packet_loss_stats.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtcp_packet.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.cc View 1 2 9 chunks +13 lines, -13 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtcp_receiver.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtcp_sender.cc View 7 chunks +7 lines, -7 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtcp_utility.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_format_vp9.cc View 4 chunks +11 lines, -11 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_receiver_video.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_sender.cc View 1 2 3 chunks +5 lines, -5 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc View 3 chunks +4 lines, -4 lines 0 comments Download
M webrtc/modules/utility/interface/helpers_android.h View 1 2 3 2 chunks +4 lines, -4 lines 0 comments Download
M webrtc/modules/utility/source/helpers_android.cc View 1 2 3 7 chunks +13 lines, -12 lines 0 comments Download
M webrtc/modules/utility/source/jvm_android.cc View 8 chunks +15 lines, -15 lines 0 comments Download
M webrtc/modules/utility/source/process_thread_impl.cc View 1 2 6 chunks +13 lines, -13 lines 0 comments Download
M webrtc/modules/video_capture/ensure_initialized.cc View 1 2 3 4 2 chunks +6 lines, -8 lines 0 comments Download
M webrtc/modules/video_coding/codecs/h264/h264.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/video_coding/codecs/h264/h264_video_toolbox_decoder.cc View 1 2 3 5 chunks +7 lines, -7 lines 0 comments Download
M webrtc/modules/video_coding/codecs/h264/h264_video_toolbox_encoder.cc View 1 2 3 5 chunks +12 lines, -12 lines 0 comments Download
M webrtc/modules/video_coding/codecs/h264/h264_video_toolbox_nalu.cc View 11 chunks +16 lines, -16 lines 0 comments Download
M webrtc/modules/video_coding/codecs/vp8/screenshare_layers.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/video_coding/codecs/vp9/vp9_frame_buffer_pool.cc View 4 chunks +6 lines, -6 lines 0 comments Download
M webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc View 1 2 3 4 5 6 7 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/video_coding/main/source/codec_database.cc View 1 chunk +5 lines, -5 lines 0 comments Download
M webrtc/modules/video_coding/main/source/frame_buffer.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/video_coding/main/source/generic_encoder.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/video_coding/main/source/receiver_unittest.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/video_coding/main/source/video_receiver.cc View 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/modules/video_coding/main/source/video_sender.cc View 1 2 8 chunks +8 lines, -8 lines 0 comments Download
M webrtc/modules/video_processing/main/source/video_decimator.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/overrides/webrtc/base/logging.cc View 1 2 3 4 5 6 1 chunk +3 lines, -3 lines 0 comments Download
M webrtc/p2p/base/dtlstransport.h View 6 chunks +8 lines, -8 lines 0 comments Download
M webrtc/p2p/base/dtlstransportchannel.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/p2p/stunprober/stunprober.cc View 1 2 3 4 10 chunks +11 lines, -11 lines 0 comments Download
M webrtc/system_wrappers/interface/aligned_array.h View 2 chunks +5 lines, -5 lines 0 comments Download
M webrtc/system_wrappers/interface/scoped_vector.h View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/system_wrappers/source/critical_section_posix.cc View 1 2 3 4 1 chunk +1 line, -2 lines 0 comments Download
M webrtc/system_wrappers/source/event_timer_posix.cc View 4 chunks +5 lines, -5 lines 0 comments Download
M webrtc/system_wrappers/source/file_impl.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/system_wrappers/source/thread_posix.cc View 4 chunks +10 lines, -10 lines 0 comments Download
M webrtc/system_wrappers/source/thread_win.cc View 5 chunks +8 lines, -8 lines 0 comments Download
M webrtc/system_wrappers/source/tick_util.cc View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/test/frame_generator.cc View 4 chunks +10 lines, -10 lines 0 comments Download
M webrtc/test/layer_filtering_transport.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/test/rtp_file_writer.cc View 1 2 3 4 3 chunks +10 lines, -10 lines 0 comments Download
M webrtc/tools/agc/agc_harness.cc View 1 2 3 5 chunks +24 lines, -23 lines 0 comments Download
M webrtc/video/audio_receive_stream.cc View 1 chunk +8 lines, -8 lines 0 comments Download
M webrtc/video/bitrate_estimator_tests.cc View 1 2 3 2 chunks +4 lines, -4 lines 0 comments Download
M webrtc/video/call.cc View 1 2 3 4 13 chunks +25 lines, -25 lines 0 comments Download
M webrtc/video/call_perf_tests.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/video/encoded_frame_callback_adapter.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/video/end_to_end_tests.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/video/full_stack.cc View 1 2 3 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/video/rampup_tests.cc View 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/video/receive_statistics_proxy.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/video/replay.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/video/rtc_event_log.cc View 2 chunks +3 lines, -3 lines 0 comments Download
M webrtc/video/rtc_event_log_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/video/screenshare_loopback.cc View 1 2 3 2 chunks +13 lines, -12 lines 0 comments Download
M webrtc/video/send_statistics_proxy.cc View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/video/transport_adapter.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/video/video_decoder.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/video/video_encoder.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/video/video_receive_stream.cc View 1 2 3 6 chunks +23 lines, -21 lines 0 comments Download
M webrtc/video/video_send_stream.cc View 1 2 3 10 chunks +34 lines, -34 lines 0 comments Download
M webrtc/video/video_send_stream_tests.cc View 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/video_engine/encoder_state_feedback.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/video_engine/overuse_frame_detector.cc View 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/video_engine/vie_channel.cc View 1 2 14 chunks +20 lines, -20 lines 0 comments Download
M webrtc/video_engine/vie_channel_group.cc View 1 2 3 4 3 chunks +5 lines, -5 lines 0 comments Download
M webrtc/video_engine/vie_encoder.cc View 1 2 6 chunks +6 lines, -6 lines 0 comments Download
M webrtc/video_frame.h View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/voice_engine/test/auto_test/fakes/loudest_filter.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/voice_engine/voe_network_impl.cc View 4 chunks +6 lines, -6 lines 0 comments Download

Dependent Patchsets:

Messages

Total messages: 34 (11 generated)
Henrik Grunell WebRTC
Before I go ahead and fix 80 cols etc. I wanted to get your opinion ...
5 years, 3 months ago (2015-09-11 10:31:48 UTC) #2
kwiberg-webrtc
On 2015/09/11 10:31:48, Henrik Grunell (webrtc) wrote: > Before I go ahead and fix 80 ...
5 years, 3 months ago (2015-09-11 13:38:52 UTC) #3
Henrik Grunell WebRTC
On 2015/09/11 13:38:52, kwiberg-webrtc wrote: > On 2015/09/11 10:31:48, Henrik Grunell (webrtc) wrote: > > ...
5 years, 3 months ago (2015-09-11 13:43:57 UTC) #4
Andrew MacDonald
On 2015/09/11 10:31:48, Henrik Grunell (webrtc) wrote: > Before I go ahead and fix 80 ...
5 years, 3 months ago (2015-09-11 15:40:15 UTC) #5
Andrew MacDonald
One concern: will we lose anything wrt reporting webrtc CHECK crashes in Chrome production?
5 years, 3 months ago (2015-09-11 15:50:27 UTC) #6
Henrik Grunell WebRTC
On 2015/09/11 15:40:15, Andrew MacDonald wrote: > On 2015/09/11 10:31:48, Henrik Grunell (webrtc) wrote: > ...
5 years, 3 months ago (2015-09-14 08:36:02 UTC) #7
Henrik Grunell WebRTC
On 2015/09/11 15:50:27, Andrew MacDonald wrote: > One concern: will we lose anything wrt reporting ...
5 years, 3 months ago (2015-09-14 08:45:31 UTC) #8
tommi
On 2015/09/14 08:45:31, Henrik Grunell (webrtc) wrote: > On 2015/09/11 15:50:27, Andrew MacDonald wrote: > ...
5 years, 3 months ago (2015-09-14 12:46:02 UTC) #9
kwiberg-webrtc
On 2015/09/14 12:46:02, tommi (webrtc) wrote: > On 2015/09/14 08:45:31, Henrik Grunell (webrtc) wrote: > ...
5 years, 3 months ago (2015-09-14 13:04:27 UTC) #10
Henrik Grunell WebRTC
On 2015/09/14 13:04:27, kwiberg-webrtc wrote: > On 2015/09/14 12:46:02, tommi (webrtc) wrote: > > On ...
5 years, 3 months ago (2015-09-14 14:37:09 UTC) #11
Andrew MacDonald
On 2015/09/14 08:45:31, Henrik Grunell (webrtc) wrote: > On 2015/09/11 15:50:27, Andrew MacDonald wrote: > ...
5 years, 3 months ago (2015-09-14 16:26:44 UTC) #12
Henrik Grunell WebRTC
On 2015/09/14 16:26:44, Andrew MacDonald wrote: > On 2015/09/14 08:45:31, Henrik Grunell (webrtc) wrote: > ...
5 years, 3 months ago (2015-09-14 19:33:51 UTC) #13
Andrew MacDonald
lgtm assuming no further concerns are brought up on your email thread. I only looked ...
5 years, 3 months ago (2015-09-15 01:51:04 UTC) #14
tommi
Thanks for doing the PSA round. lgtm (and hope things go well with the >80 ...
5 years, 3 months ago (2015-09-15 13:29:05 UTC) #15
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1335923002/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1335923002/100001
5 years, 3 months ago (2015-09-16 15:52:41 UTC) #18
commit-bot: I haz the power
Try jobs failed on following builders: presubmit on tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/presubmit/builds/782)
5 years, 3 months ago (2015-09-16 15:57:46 UTC) #20
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1335923002/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1335923002/120001
5 years, 3 months ago (2015-09-16 16:11:58 UTC) #23
commit-bot: I haz the power
Try jobs failed on following builders: android on tryserver.webrtc (JOB_TIMED_OUT, no build URL) android_arm64_rel on ...
5 years, 3 months ago (2015-09-16 18:12:21 UTC) #25
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1335923002/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1335923002/120001
5 years, 3 months ago (2015-09-17 07:07:37 UTC) #27
commit-bot: I haz the power
Try jobs failed on following builders: presubmit on tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/presubmit/builds/798)
5 years, 3 months ago (2015-09-17 07:10:21 UTC) #29
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1335923002/140001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1335923002/140001
5 years, 3 months ago (2015-09-17 07:22:16 UTC) #32
commit-bot: I haz the power
Committed patchset #8 (id:140001)
5 years, 3 months ago (2015-09-17 07:24:42 UTC) #33
commit-bot: I haz the power
5 years, 3 months ago (2015-09-17 07:25:01 UTC) #34
Message was sent while issue was closed.
Patchset 8 (id:??) landed as
https://crrev.com/91d6edef35e7275879c30ce16ecb8b6dc73c6e4a
Cr-Commit-Position: refs/heads/master@{#9964}

Powered by Google App Engine
This is Rietveld 408576698