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

Unified Diff: webrtc/base/test/mock_ratetracker.h

Issue 2381833003: Change TWCC send interval to reduce overhead on low BW situations. (Closed)
Patch Set: Rebased Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/base/test/mock_ratetracker.h
diff --git a/webrtc/base/test/mock_ratetracker.h b/webrtc/base/test/mock_ratetracker.h
new file mode 100644
index 0000000000000000000000000000000000000000..a0f48235c3f4df844b3126e210c67e7ec0a9f751
--- /dev/null
+++ b/webrtc/base/test/mock_ratetracker.h
@@ -0,0 +1,35 @@
+/*
+ * Copyright (c) 2016 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.
+ */
+
+#ifndef WEBRTC_BASE_TEST_MOCK_RATETRACKER_H_
+#define WEBRTC_BASE_TEST_MOCK_RATETRACKER_H_
+
+#include "webrtc/base/ratetracker.h"
+
+#include "webrtc/test/gmock.h"
+
+namespace rtc {
+
+class MockRateTracker : public RateTracker {
+ public:
+ MockRateTracker() : RateTracker(1000, 1) {}
+
+ MOCK_CONST_METHOD1(ComputeRateForInterval,
+ double(int64_t interval_milliseconds));
+ MOCK_CONST_METHOD0(ComputeRate, double());
+ MOCK_CONST_METHOD0(ComputeTotalRate, double());
+ MOCK_CONST_METHOD0(TotalSampleCount, size_t());
+ MOCK_METHOD1(AddSamples, void(size_t sample_count));
+ MOCK_CONST_METHOD0(Time, int64_t());
+};
+
+} // namespace rtc
+
+#endif // WEBRTC_BASE_TEST_MOCK_RATETRACKER_H_

Powered by Google App Engine
This is Rietveld 408576698