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

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

Issue 850983002: Implement video frame acknowledgements in the chromoting protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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
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/logging.h" 7 #include "base/logging.h"
8 #include "base/thread_task_runner_handle.h" 8 #include "base/thread_task_runner_handle.h"
9 9
10 namespace remoting { 10 namespace remoting {
(...skipping 25 matching lines...) Expand all
36 MockHostStub::~MockHostStub() {} 36 MockHostStub::~MockHostStub() {}
37 37
38 MockClientStub::MockClientStub() {} 38 MockClientStub::MockClientStub() {}
39 39
40 MockClientStub::~MockClientStub() {} 40 MockClientStub::~MockClientStub() {}
41 41
42 MockCursorShapeStub::MockCursorShapeStub() {} 42 MockCursorShapeStub::MockCursorShapeStub() {}
43 43
44 MockCursorShapeStub::~MockCursorShapeStub() {} 44 MockCursorShapeStub::~MockCursorShapeStub() {}
45 45
46 MockVideoStub::MockVideoStub() {} 46 MockVideoSender::MockVideoSender() {}
47 47
48 MockVideoStub::~MockVideoStub() {} 48 MockVideoSender::~MockVideoSender() {}
49 49
50 MockSession::MockSession() {} 50 MockSession::MockSession() {}
51 51
52 MockSession::~MockSession() {} 52 MockSession::~MockSession() {}
53 53
54 MockSessionManager::MockSessionManager() {} 54 MockSessionManager::MockSessionManager() {}
55 55
56 MockSessionManager::~MockSessionManager() {} 56 MockSessionManager::~MockSessionManager() {}
57 57
58 MockPairingRegistryDelegate::MockPairingRegistryDelegate() { 58 MockPairingRegistryDelegate::MockPairingRegistryDelegate() {
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 void SynchronousPairingRegistry::PostTask( 107 void SynchronousPairingRegistry::PostTask(
108 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner, 108 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner,
109 const tracked_objects::Location& from_here, 109 const tracked_objects::Location& from_here,
110 const base::Closure& task) { 110 const base::Closure& task) {
111 DCHECK(task_runner->BelongsToCurrentThread()); 111 DCHECK(task_runner->BelongsToCurrentThread());
112 task.Run(); 112 task.Run();
113 } 113 }
114 114
115 } // namespace protocol 115 } // namespace protocol
116 } // namespace remoting 116 } // namespace remoting
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698