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

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

Issue 9646013: Add the plumbing that will carry a clipboard item from a chromoting client to a host. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix remoting_simple_host. Created 8 years, 9 months 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 | Annotate | Revision Log
« no previous file with comments | « remoting/protocol/protocol_mock_objects.h ('k') | remoting/remoting.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/message_loop_proxy.h" 7 #include "base/message_loop_proxy.h"
8 #include "net/base/ip_endpoint.h" 8 #include "net/base/ip_endpoint.h"
9 9
10 namespace remoting { 10 namespace remoting {
11 namespace protocol { 11 namespace protocol {
12 12
13 MockConnectionToClient::MockConnectionToClient( 13 MockConnectionToClient::MockConnectionToClient(
14 Session* session, 14 Session* session,
15 HostStub* host_stub, 15 HostStub* host_stub,
16 InputStub* input_stub) 16 InputStub* input_stub)
17 : ConnectionToClient(session) { 17 : ConnectionToClient(session) {
18 set_host_stub(host_stub); 18 set_host_stub(host_stub);
19 set_input_stub(input_stub); 19 set_input_stub(input_stub);
20 } 20 }
21 21
22 MockConnectionToClient::~MockConnectionToClient() {} 22 MockConnectionToClient::~MockConnectionToClient() {}
23 23
24 MockConnectionToClientEventHandler::MockConnectionToClientEventHandler() {} 24 MockConnectionToClientEventHandler::MockConnectionToClientEventHandler() {}
25 25
26 MockConnectionToClientEventHandler::~MockConnectionToClientEventHandler() {} 26 MockConnectionToClientEventHandler::~MockConnectionToClientEventHandler() {}
27 27
28 MockClipboardStub::MockClipboardStub() {}
29
30 MockClipboardStub::~MockClipboardStub() {}
31
28 MockInputStub::MockInputStub() {} 32 MockInputStub::MockInputStub() {}
29 33
30 MockInputStub::~MockInputStub() {} 34 MockInputStub::~MockInputStub() {}
31 35
36 MockHostEventStub::MockHostEventStub() {}
37
38 MockHostEventStub::~MockHostEventStub() {}
39
32 MockHostStub::MockHostStub() {} 40 MockHostStub::MockHostStub() {}
33 41
34 MockHostStub::~MockHostStub() {} 42 MockHostStub::~MockHostStub() {}
35 43
36 MockClientStub::MockClientStub() {} 44 MockClientStub::MockClientStub() {}
37 45
38 MockClientStub::~MockClientStub() {} 46 MockClientStub::~MockClientStub() {}
39 47
40 MockVideoStub::MockVideoStub() {} 48 MockVideoStub::MockVideoStub() {}
41 49
42 MockVideoStub::~MockVideoStub() {} 50 MockVideoStub::~MockVideoStub() {}
43 51
44 MockSession::MockSession() {} 52 MockSession::MockSession() {}
45 53
46 MockSession::~MockSession() {} 54 MockSession::~MockSession() {}
47 55
48 } // namespace protocol 56 } // namespace protocol
49 } // namespace remoting 57 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/protocol/protocol_mock_objects.h ('k') | remoting/remoting.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698