// Copyright 2015 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef REMOTING_PROTOCOL_PERFORMANCE_TRACKER_H_ #define REMOTING_PROTOCOL_PERFORMANCE_TRACKER_H_ #include <stdint.h> #include "remoting/base/rate_counter.h" #include "remoting/base/running_samples.h" #include "remoting/protocol/frame_stats.h" namespace remoting::protocol { // PerformanceTracker defines a bundle of performance counters and statistics // for chromoting. class PerformanceTracker : public FrameStatsConsumer { … }; } // namespace remoting::protocol #endif // REMOTING_PROTOCOL_PERFORMANCE_TRACKER_H_