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

Side by Side Diff: remoting/host/host_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/host/host_mock_objects.h ('k') | remoting/host/user_authenticator_fake.h » ('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/host/host_mock_objects.h" 5 #include "remoting/host/host_mock_objects.h"
6 6
7 namespace remoting { 7 namespace remoting {
8 8
9 MockCapturer::MockCapturer() {} 9 MockCapturer::MockCapturer() {}
10 10
11 MockCapturer::~MockCapturer() {} 11 MockCapturer::~MockCapturer() {}
12 12
13 MockCurtain::MockCurtain() { } 13 MockCurtain::MockCurtain() { }
14 14
15 MockCurtain::~MockCurtain() { } 15 MockCurtain::~MockCurtain() { }
16 16
17 Curtain* Curtain::Create() { 17 Curtain* Curtain::Create() {
18 return new MockCurtain(); 18 return new MockCurtain();
19 } 19 }
20 20
21 MockChromotingHostContext::MockChromotingHostContext() 21 MockChromotingHostContext::MockChromotingHostContext()
22 : ChromotingHostContext(NULL) {} 22 : ChromotingHostContext(NULL) {}
23 23
24 MockChromotingHostContext::~MockChromotingHostContext() {} 24 MockChromotingHostContext::~MockChromotingHostContext() {}
25 25
26 MockClientSessionEventHandler::MockClientSessionEventHandler() {}
27
28 MockClientSessionEventHandler::~MockClientSessionEventHandler() {}
29
26 } // namespace remoting 30 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/host_mock_objects.h ('k') | remoting/host/user_authenticator_fake.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698