OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "base/task.h" | 5 #include "base/task.h" |
6 #include "remoting/host/capturer_fake.h" | 6 #include "remoting/host/capturer_fake.h" |
7 #include "remoting/host/chromoting_host.h" | 7 #include "remoting/host/chromoting_host.h" |
8 #include "remoting/host/chromoting_host_context.h" | 8 #include "remoting/host/chromoting_host_context.h" |
| 9 #include "remoting/host/host_mock_objects.h" |
9 #include "remoting/host/in_memory_host_config.h" | 10 #include "remoting/host/in_memory_host_config.h" |
10 #include "remoting/host/mock_objects.h" | |
11 #include "remoting/proto/video.pb.h" | 11 #include "remoting/proto/video.pb.h" |
12 #include "remoting/protocol/mock_objects.h" | 12 #include "remoting/protocol/protocol_mock_objects.h" |
13 #include "remoting/protocol/session_config.h" | 13 #include "remoting/protocol/session_config.h" |
14 #include "testing/gmock/include/gmock/gmock.h" | 14 #include "testing/gmock/include/gmock/gmock.h" |
15 #include "testing/gtest/include/gtest/gtest.h" | 15 #include "testing/gtest/include/gtest/gtest.h" |
16 | 16 |
17 using testing::_; | 17 using testing::_; |
18 using testing::AnyNumber; | 18 using testing::AnyNumber; |
19 using testing::DeleteArg; | 19 using testing::DeleteArg; |
20 using testing::DoAll; | 20 using testing::DoAll; |
21 using testing::InSequence; | 21 using testing::InSequence; |
22 using testing::InvokeWithoutArgs; | 22 using testing::InvokeWithoutArgs; |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 .Times(AnyNumber()); | 220 .Times(AnyNumber()); |
221 } | 221 } |
222 EXPECT_CALL(*connection_.get(), Disconnect()) | 222 EXPECT_CALL(*connection_.get(), Disconnect()) |
223 .RetiresOnSaturation(); | 223 .RetiresOnSaturation(); |
224 | 224 |
225 SimulateClientConnection(); | 225 SimulateClientConnection(); |
226 message_loop_.Run(); | 226 message_loop_.Run(); |
227 } | 227 } |
228 | 228 |
229 } // namespace remoting | 229 } // namespace remoting |
OLD | NEW |