blob: f7b06fe28e9d9e5d1f41bd0e2d7dc5b18650d550 [file] [log] [blame]
/*
* Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#include "logging/rtc_event_log/events/rtc_event_probe_result_success.h"
namespace webrtc {
RtcEventProbeResultSuccess::RtcEventProbeResultSuccess(int id, int bitrate_bps)
: id_(id), bitrate_bps_(bitrate_bps) {}
RtcEvent::Type RtcEventProbeResultSuccess::GetType() const {
return RtcEvent::Type::ProbeResultSuccess;
}
bool RtcEventProbeResultSuccess::IsConfigEvent() const {
return false;
}
} // namespace webrtc