OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/protocol_mock_objects.h" | 5 #include "remoting/protocol/protocol_mock_objects.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/thread_task_runner_handle.h" | 8 #include "base/thread_task_runner_handle.h" |
9 | 9 |
10 namespace remoting { | 10 namespace remoting { |
(...skipping 25 matching lines...) Expand all Loading... |
36 MockHostStub::~MockHostStub() {} | 36 MockHostStub::~MockHostStub() {} |
37 | 37 |
38 MockClientStub::MockClientStub() {} | 38 MockClientStub::MockClientStub() {} |
39 | 39 |
40 MockClientStub::~MockClientStub() {} | 40 MockClientStub::~MockClientStub() {} |
41 | 41 |
42 MockCursorShapeStub::MockCursorShapeStub() {} | 42 MockCursorShapeStub::MockCursorShapeStub() {} |
43 | 43 |
44 MockCursorShapeStub::~MockCursorShapeStub() {} | 44 MockCursorShapeStub::~MockCursorShapeStub() {} |
45 | 45 |
46 MockVideoStub::MockVideoStub() {} | 46 MockVideoSender::MockVideoSender() {} |
47 | 47 |
48 MockVideoStub::~MockVideoStub() {} | 48 MockVideoSender::~MockVideoSender() {} |
49 | 49 |
50 MockSession::MockSession() {} | 50 MockSession::MockSession() {} |
51 | 51 |
52 MockSession::~MockSession() {} | 52 MockSession::~MockSession() {} |
53 | 53 |
54 MockSessionManager::MockSessionManager() {} | 54 MockSessionManager::MockSessionManager() {} |
55 | 55 |
56 MockSessionManager::~MockSessionManager() {} | 56 MockSessionManager::~MockSessionManager() {} |
57 | 57 |
58 MockPairingRegistryDelegate::MockPairingRegistryDelegate() { | 58 MockPairingRegistryDelegate::MockPairingRegistryDelegate() { |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 void SynchronousPairingRegistry::PostTask( | 107 void SynchronousPairingRegistry::PostTask( |
108 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner, | 108 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner, |
109 const tracked_objects::Location& from_here, | 109 const tracked_objects::Location& from_here, |
110 const base::Closure& task) { | 110 const base::Closure& task) { |
111 DCHECK(task_runner->BelongsToCurrentThread()); | 111 DCHECK(task_runner->BelongsToCurrentThread()); |
112 task.Run(); | 112 task.Run(); |
113 } | 113 } |
114 | 114 |
115 } // namespace protocol | 115 } // namespace protocol |
116 } // namespace remoting | 116 } // namespace remoting |
OLD | NEW |