This source file includes following definitions.
- round_trip_ms_
#include "remoting/client/chromoting_stats.h"
namespace {
const int kTimeWindow = 3;
const int kLatencyWindow = 10;
}
namespace remoting {
ChromotingStats::ChromotingStats()
: video_bandwidth_(base::TimeDelta::FromSeconds(kTimeWindow)),
video_frame_rate_(base::TimeDelta::FromSeconds(kTimeWindow)),
video_capture_ms_(kLatencyWindow),
video_encode_ms_(kLatencyWindow),
video_decode_ms_(kLatencyWindow),
video_paint_ms_(kLatencyWindow),
round_trip_ms_(kLatencyWindow) {
}
ChromotingStats::~ChromotingStats() {
}
}