| 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/message_loop_proxy.h" | 7 #include "base/message_loop_proxy.h" |
| 8 #include "base/single_thread_task_runner.h" | 8 #include "base/single_thread_task_runner.h" |
| 9 #include "media/video/capture/screen/screen_capturer.h" | 9 #include "media/video/capture/screen/screen_capturer.h" |
| 10 #include "net/base/ip_endpoint.h" | 10 #include "net/base/ip_endpoint.h" |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 | 50 |
| 51 MockInputInjector::MockInputInjector() {} | 51 MockInputInjector::MockInputInjector() {} |
| 52 | 52 |
| 53 MockInputInjector::~MockInputInjector() {} | 53 MockInputInjector::~MockInputInjector() {} |
| 54 | 54 |
| 55 void MockInputInjector::Start( | 55 void MockInputInjector::Start( |
| 56 scoped_ptr<protocol::ClipboardStub> client_clipboard) { | 56 scoped_ptr<protocol::ClipboardStub> client_clipboard) { |
| 57 StartPtr(client_clipboard.get()); | 57 StartPtr(client_clipboard.get()); |
| 58 } | 58 } |
| 59 | 59 |
| 60 MockContinueWindow::MockContinueWindow() {} | |
| 61 | |
| 62 MockContinueWindow::~MockContinueWindow() {} | |
| 63 | |
| 64 scoped_ptr<ContinueWindow> ContinueWindow::Create(const UiStrings* ui_strings) { | |
| 65 return scoped_ptr<ContinueWindow>(new MockContinueWindow()); | |
| 66 } | |
| 67 | |
| 68 MockClientSessionControl::MockClientSessionControl() {} | 60 MockClientSessionControl::MockClientSessionControl() {} |
| 69 | 61 |
| 70 MockClientSessionControl::~MockClientSessionControl() {} | 62 MockClientSessionControl::~MockClientSessionControl() {} |
| 71 | 63 |
| 72 MockClientSessionEventHandler::MockClientSessionEventHandler() {} | 64 MockClientSessionEventHandler::MockClientSessionEventHandler() {} |
| 73 | 65 |
| 74 MockClientSessionEventHandler::~MockClientSessionEventHandler() {} | 66 MockClientSessionEventHandler::~MockClientSessionEventHandler() {} |
| 75 | 67 |
| 76 MockHostStatusObserver::MockHostStatusObserver() {} | 68 MockHostStatusObserver::MockHostStatusObserver() {} |
| 77 | 69 |
| 78 MockHostStatusObserver::~MockHostStatusObserver() {} | 70 MockHostStatusObserver::~MockHostStatusObserver() {} |
| 79 | 71 |
| 80 } // namespace remoting | 72 } // namespace remoting |
| OLD | NEW |