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

Side by Side Diff: webrtc/modules/pacing/paced_sender_unittest.cc

Issue 1413333002: system_wrappers: rename interface -> include (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased again! Created 5 years, 1 month 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #include <list> 11 #include <list>
12 12
13 #include "testing/gmock/include/gmock/gmock.h" 13 #include "testing/gmock/include/gmock/gmock.h"
14 #include "testing/gtest/include/gtest/gtest.h" 14 #include "testing/gtest/include/gtest/gtest.h"
15 #include "webrtc/modules/pacing/include/paced_sender.h" 15 #include "webrtc/modules/pacing/include/paced_sender.h"
16 #include "webrtc/system_wrappers/interface/clock.h" 16 #include "webrtc/system_wrappers/include/clock.h"
17 17
18 using testing::_; 18 using testing::_;
19 using testing::Return; 19 using testing::Return;
20 20
21 namespace webrtc { 21 namespace webrtc {
22 namespace test { 22 namespace test {
23 23
24 static const int kTargetBitrate = 800; 24 static const int kTargetBitrate = 800;
25 static const float kPaceMultiplier = 1.5f; 25 static const float kPaceMultiplier = 1.5f;
26 26
(...skipping 798 matching lines...) Expand 10 before | Expand all | Expand 10 after
825 sequence_number++, clock_.TimeInMilliseconds(), 825 sequence_number++, clock_.TimeInMilliseconds(),
826 kPacketSize, false); 826 kPacketSize, false);
827 827
828 // Don't send padding if queue is non-empty, even if padding budget > 0. 828 // Don't send padding if queue is non-empty, even if padding budget > 0.
829 EXPECT_CALL(callback_, TimeToSendPadding(_)).Times(0); 829 EXPECT_CALL(callback_, TimeToSendPadding(_)).Times(0);
830 send_bucket_->Process(); 830 send_bucket_->Process();
831 } 831 }
832 832
833 } // namespace test 833 } // namespace test
834 } // namespace webrtc 834 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/pacing/paced_sender.cc ('k') | webrtc/modules/remote_bitrate_estimator/overuse_detector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698