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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 } | 69 } |
70 | 70 |
71 MockContinueWindow::MockContinueWindow() {} | 71 MockContinueWindow::MockContinueWindow() {} |
72 | 72 |
73 MockContinueWindow::~MockContinueWindow() {} | 73 MockContinueWindow::~MockContinueWindow() {} |
74 | 74 |
75 scoped_ptr<ContinueWindow> ContinueWindow::Create(const UiStrings* ui_strings) { | 75 scoped_ptr<ContinueWindow> ContinueWindow::Create(const UiStrings* ui_strings) { |
76 return scoped_ptr<ContinueWindow>(new MockContinueWindow()); | 76 return scoped_ptr<ContinueWindow>(new MockContinueWindow()); |
77 } | 77 } |
78 | 78 |
79 MockLocalInputMonitor::MockLocalInputMonitor() {} | |
80 | |
81 MockLocalInputMonitor::~MockLocalInputMonitor() {} | |
82 | |
83 MockClientSessionEventHandler::MockClientSessionEventHandler() {} | 79 MockClientSessionEventHandler::MockClientSessionEventHandler() {} |
84 | 80 |
85 MockClientSessionEventHandler::~MockClientSessionEventHandler() {} | 81 MockClientSessionEventHandler::~MockClientSessionEventHandler() {} |
86 | 82 |
87 MockHostStatusObserver::MockHostStatusObserver() {} | 83 MockHostStatusObserver::MockHostStatusObserver() {} |
88 | 84 |
89 MockHostStatusObserver::~MockHostStatusObserver() {} | 85 MockHostStatusObserver::~MockHostStatusObserver() {} |
90 | 86 |
91 MockSessionController::MockSessionController() {} | 87 MockSessionController::MockSessionController() {} |
92 | 88 |
93 MockSessionController::~MockSessionController() {} | 89 MockSessionController::~MockSessionController() {} |
94 | 90 |
95 } // namespace remoting | 91 } // namespace remoting |
OLD | NEW |