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

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

Issue 6724033: Remove authenticated_ fields from stubs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address reviewer's comments. Created 9 years, 8 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/input_stub.cc ('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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 namespace remoting { 7 namespace remoting {
8 namespace protocol { 8 namespace protocol {
9 9
10 MockConnectionToClient::MockConnectionToClient(MessageLoop* message_loop, 10 MockConnectionToClient::MockConnectionToClient(MessageLoop* message_loop,
11 EventHandler* handler, 11 EventHandler* handler,
12 HostStub* host_stub, 12 HostStub* host_stub,
13 InputStub* input_stub) 13 InputStub* input_stub)
14 : ConnectionToClient(message_loop, handler, input_stub) { 14 : ConnectionToClient(message_loop, handler) {
15 set_host_stub(host_stub); 15 set_host_stub(host_stub);
16 set_input_stub(input_stub);
16 } 17 }
17 18
18 MockConnectionToClient::~MockConnectionToClient() {} 19 MockConnectionToClient::~MockConnectionToClient() {}
19 20
20 MockConnectionToClientEventHandler::MockConnectionToClientEventHandler() {} 21 MockConnectionToClientEventHandler::MockConnectionToClientEventHandler() {}
21 22
22 MockConnectionToClientEventHandler::~MockConnectionToClientEventHandler() {} 23 MockConnectionToClientEventHandler::~MockConnectionToClientEventHandler() {}
23 24
24 MockInputStub::MockInputStub() {} 25 MockInputStub::MockInputStub() {}
25 26
(...skipping 10 matching lines...) Expand all
36 MockVideoStub::MockVideoStub() {} 37 MockVideoStub::MockVideoStub() {}
37 38
38 MockVideoStub::~MockVideoStub() {} 39 MockVideoStub::~MockVideoStub() {}
39 40
40 MockSession::MockSession() {} 41 MockSession::MockSession() {}
41 42
42 MockSession::~MockSession() {} 43 MockSession::~MockSession() {}
43 44
44 } // namespace protocol 45 } // namespace protocol
45 } // namespace remoting 46 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/protocol/input_stub.cc ('k') | remoting/remoting.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698