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

Side by Side Diff: remoting/host/host_mock_objects.cc

Issue 6780014: Clean up remoting project (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix a compile glitch on Windows 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
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() { }
Lambros 2011/04/01 15:54:00 Nit: remove spaces between {} for consistency
dmac 2011/04/01 21:15:07 Done.
14 14
15 MockCurtain::~MockCurtain() { } 15 MockCurtain::~MockCurtain() { }
16 16
17 MockEventExecutor::MockEventExecutor() {}
18
19 MockEventExecutor::~MockEventExecutor() {}
20
17 Curtain* Curtain::Create() { 21 Curtain* Curtain::Create() {
18 return new MockCurtain(); 22 return new MockCurtain();
19 } 23 }
20 24
21 MockChromotingHostContext::MockChromotingHostContext() 25 MockChromotingHostContext::MockChromotingHostContext()
22 : ChromotingHostContext(NULL) {} 26 : ChromotingHostContext(NULL) {}
23 27
24 MockChromotingHostContext::~MockChromotingHostContext() {} 28 MockChromotingHostContext::~MockChromotingHostContext() {}
25 29
26 MockClientSessionEventHandler::MockClientSessionEventHandler() {} 30 MockClientSessionEventHandler::MockClientSessionEventHandler() {}
27 31
28 MockClientSessionEventHandler::~MockClientSessionEventHandler() {} 32 MockClientSessionEventHandler::~MockClientSessionEventHandler() {}
29 33
34 MockUserAuthenticator::MockUserAuthenticator() {}
Jamie 2011/04/01 10:51:10 Nit: Missing blank line.
dmac 2011/04/01 21:15:07 Done.
35 MockUserAuthenticator::~MockUserAuthenticator() {}
36
30 } // namespace remoting 37 } // namespace remoting
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698