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

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

Issue 10696134: remoting/host: Rename Capturer to VideoFrameCapturer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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) 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/host/host_mock_objects.h" 5 #include "remoting/host/host_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 #include "remoting/proto/event.pb.h" 9 #include "remoting/proto/event.pb.h"
10 #include "remoting/protocol/transport.h" 10 #include "remoting/protocol/transport.h"
11 11
12 namespace remoting { 12 namespace remoting {
13 13
14 MockCapturer::MockCapturer() {} 14 MockVideoFrameCapturer::MockVideoFrameCapturer() {}
15 15
16 MockCapturer::~MockCapturer() {} 16 MockVideoFrameCapturer::~MockVideoFrameCapturer() {}
17 17
18 MockCurtain::MockCurtain() {} 18 MockCurtain::MockCurtain() {}
19 19
20 MockCurtain::~MockCurtain() {} 20 MockCurtain::~MockCurtain() {}
21 21
22 Curtain* Curtain::Create() { 22 Curtain* Curtain::Create() {
23 return new MockCurtain(); 23 return new MockCurtain();
24 } 24 }
25 25
26 MockEventExecutor::MockEventExecutor() {} 26 MockEventExecutor::MockEventExecutor() {}
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 68
69 MockHostStatusObserver::MockHostStatusObserver() {} 69 MockHostStatusObserver::MockHostStatusObserver() {}
70 70
71 MockHostStatusObserver::~MockHostStatusObserver() {} 71 MockHostStatusObserver::~MockHostStatusObserver() {}
72 72
73 MockUserAuthenticator::MockUserAuthenticator() {} 73 MockUserAuthenticator::MockUserAuthenticator() {}
74 74
75 MockUserAuthenticator::~MockUserAuthenticator() {} 75 MockUserAuthenticator::~MockUserAuthenticator() {}
76 76
77 } // namespace remoting 77 } // namespace remoting
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698