| 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/host/host_mock_objects.h" | 5 #include "remoting/host/host_mock_objects.h" |
| 6 | 6 |
| 7 #include "base/memory/ptr_util.h" | 7 #include "base/memory/ptr_util.h" |
| 8 #include "base/single_thread_task_runner.h" | 8 #include "base/single_thread_task_runner.h" |
| 9 #include "net/base/ip_endpoint.h" | 9 #include "net/base/ip_endpoint.h" |
| 10 #include "remoting/base/auto_thread_task_runner.h" | 10 #include "remoting/base/auto_thread_task_runner.h" |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 MockClientSessionDetails::~MockClientSessionDetails() {} | 73 MockClientSessionDetails::~MockClientSessionDetails() {} |
| 74 | 74 |
| 75 MockClientSessionEventHandler::MockClientSessionEventHandler() {} | 75 MockClientSessionEventHandler::MockClientSessionEventHandler() {} |
| 76 | 76 |
| 77 MockClientSessionEventHandler::~MockClientSessionEventHandler() {} | 77 MockClientSessionEventHandler::~MockClientSessionEventHandler() {} |
| 78 | 78 |
| 79 MockHostStatusObserver::MockHostStatusObserver() {} | 79 MockHostStatusObserver::MockHostStatusObserver() {} |
| 80 | 80 |
| 81 MockHostStatusObserver::~MockHostStatusObserver() {} | 81 MockHostStatusObserver::~MockHostStatusObserver() {} |
| 82 | 82 |
| 83 MockSecurityKeyAuthHandler::MockSecurityKeyAuthHandler() {} | 83 MockGnubbyAuthHandler::MockGnubbyAuthHandler() {} |
| 84 | 84 |
| 85 MockSecurityKeyAuthHandler::~MockSecurityKeyAuthHandler() {} | 85 MockGnubbyAuthHandler::~MockGnubbyAuthHandler() {} |
| 86 | 86 |
| 87 void MockSecurityKeyAuthHandler::SetSendMessageCallback( | 87 void MockGnubbyAuthHandler::SetSendMessageCallback( |
| 88 const SecurityKeyAuthHandler::SendMessageCallback& callback) { | 88 const GnubbyAuthHandler::SendMessageCallback& callback) { |
| 89 callback_ = callback; | 89 callback_ = callback; |
| 90 } | 90 } |
| 91 | 91 |
| 92 const SecurityKeyAuthHandler::SendMessageCallback& | 92 const GnubbyAuthHandler::SendMessageCallback& |
| 93 MockSecurityKeyAuthHandler::GetSendMessageCallback() { | 93 MockGnubbyAuthHandler::GetSendMessageCallback() { |
| 94 return callback_; | 94 return callback_; |
| 95 } | 95 } |
| 96 | 96 |
| 97 MockMouseCursorMonitor::MockMouseCursorMonitor() {} | 97 MockMouseCursorMonitor::MockMouseCursorMonitor() {} |
| 98 | 98 |
| 99 MockMouseCursorMonitor::~MockMouseCursorMonitor() {} | 99 MockMouseCursorMonitor::~MockMouseCursorMonitor() {} |
| 100 | 100 |
| 101 } // namespace remoting | 101 } // namespace remoting |
| OLD | NEW |