Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(152)

Side by Side Diff: remoting/protocol/protocol_mock_objects.cc

Issue 1460593005: Make protocol::ConnectionToClient an abstract interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 {
11 namespace protocol { 11 namespace protocol {
12 12
13 MockConnectionToClient::MockConnectionToClient(Session* session, 13 MockConnectionToClient::MockConnectionToClient(scoped_ptr<Session> session,
14 HostStub* host_stub) 14 HostStub* host_stub)
15 : ConnectionToClient(session), 15 : session_(session.Pass()), host_stub_(host_stub) {}
16 clipboard_stub_(nullptr),
17 host_stub_(host_stub),
18 input_stub_(nullptr),
19 video_feedback_stub_(nullptr) {
20 }
21 16
22 MockConnectionToClient::~MockConnectionToClient() {} 17 MockConnectionToClient::~MockConnectionToClient() {}
23 18
24 MockConnectionToClientEventHandler::MockConnectionToClientEventHandler() {} 19 MockConnectionToClientEventHandler::MockConnectionToClientEventHandler() {}
25 20
26 MockConnectionToClientEventHandler::~MockConnectionToClientEventHandler() {} 21 MockConnectionToClientEventHandler::~MockConnectionToClientEventHandler() {}
27 22
28 MockClipboardStub::MockClipboardStub() {} 23 MockClipboardStub::MockClipboardStub() {}
29 24
30 MockClipboardStub::~MockClipboardStub() {} 25 MockClipboardStub::~MockClipboardStub() {}
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 void SynchronousPairingRegistry::PostTask( 104 void SynchronousPairingRegistry::PostTask(
110 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner, 105 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner,
111 const tracked_objects::Location& from_here, 106 const tracked_objects::Location& from_here,
112 const base::Closure& task) { 107 const base::Closure& task) {
113 DCHECK(task_runner->BelongsToCurrentThread()); 108 DCHECK(task_runner->BelongsToCurrentThread());
114 task.Run(); 109 task.Run();
115 } 110 }
116 111
117 } // namespace protocol 112 } // namespace protocol
118 } // namespace remoting 113 } // namespace remoting
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698