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

Side by Side Diff: remoting/protocol/capture_scheduler_unittest.cc

Issue 1542203002: Switch to standard integer types in remoting/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@int-remoting-host
Patch Set: Created 4 years, 12 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 unified diff | Download patch
« no previous file with comments | « remoting/protocol/capture_scheduler.cc ('k') | remoting/protocol/channel_dispatcher_base.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "remoting/protocol/capture_scheduler.h" 5 #include "remoting/protocol/capture_scheduler.h"
6 6
7 #include <stddef.h>
8
9 #include "base/macros.h"
7 #include "base/message_loop/message_loop.h" 10 #include "base/message_loop/message_loop.h"
8 #include "base/test/simple_test_tick_clock.h" 11 #include "base/test/simple_test_tick_clock.h"
9 #include "base/timer/mock_timer.h" 12 #include "base/timer/mock_timer.h"
10 #include "remoting/proto/video.pb.h" 13 #include "remoting/proto/video.pb.h"
11 #include "testing/gtest/include/gtest/gtest.h" 14 #include "testing/gtest/include/gtest/gtest.h"
12 15
13 namespace remoting { 16 namespace remoting {
14 namespace protocol { 17 namespace protocol {
15 18
16 static const int kTestInputs[] = { 100, 50, 30, 20, 10, 30, 60, 80 }; 19 static const int kTestInputs[] = { 100, 50, 30, 20, 10, 30, 60, 80 };
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 191
189 // Next frame should be scheduled, once one of the queued frames is 192 // Next frame should be scheduled, once one of the queued frames is
190 // acknowledged. 193 // acknowledged.
191 EXPECT_FALSE(capture_timer_->IsRunning()); 194 EXPECT_FALSE(capture_timer_->IsRunning());
192 scheduler_->ProcessVideoAck(make_scoped_ptr(new VideoAck())); 195 scheduler_->ProcessVideoAck(make_scoped_ptr(new VideoAck()));
193 EXPECT_TRUE(capture_timer_->IsRunning()); 196 EXPECT_TRUE(capture_timer_->IsRunning());
194 } 197 }
195 198
196 } // namespace protocol 199 } // namespace protocol
197 } // namespace remoting 200 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/protocol/capture_scheduler.cc ('k') | remoting/protocol/channel_dispatcher_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698