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

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

Issue 2162083003: Renaming Gnubby and RemoteSecurityKey files/classes/members (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing a GYP build error Created 4 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
« no previous file with comments | « remoting/host/host_mock_objects.h ('k') | remoting/host/remoting_me2me_host.cc » ('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) 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/memory/ptr_util.h" 7 #include "base/memory/ptr_util.h"
8 #include "base/single_thread_task_runner.h" 8 #include "base/single_thread_task_runner.h"
9 #include "net/base/ip_endpoint.h" 9 #include "net/base/ip_endpoint.h"
10 #include "remoting/base/auto_thread_task_runner.h" 10 #include "remoting/base/auto_thread_task_runner.h"
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 MockClientSessionDetails::~MockClientSessionDetails() {} 73 MockClientSessionDetails::~MockClientSessionDetails() {}
74 74
75 MockClientSessionEventHandler::MockClientSessionEventHandler() {} 75 MockClientSessionEventHandler::MockClientSessionEventHandler() {}
76 76
77 MockClientSessionEventHandler::~MockClientSessionEventHandler() {} 77 MockClientSessionEventHandler::~MockClientSessionEventHandler() {}
78 78
79 MockHostStatusObserver::MockHostStatusObserver() {} 79 MockHostStatusObserver::MockHostStatusObserver() {}
80 80
81 MockHostStatusObserver::~MockHostStatusObserver() {} 81 MockHostStatusObserver::~MockHostStatusObserver() {}
82 82
83 MockGnubbyAuthHandler::MockGnubbyAuthHandler() {} 83 MockSecurityKeyAuthHandler::MockSecurityKeyAuthHandler() {}
84 84
85 MockGnubbyAuthHandler::~MockGnubbyAuthHandler() {} 85 MockSecurityKeyAuthHandler::~MockSecurityKeyAuthHandler() {}
86 86
87 void MockGnubbyAuthHandler::SetSendMessageCallback( 87 void MockSecurityKeyAuthHandler::SetSendMessageCallback(
88 const GnubbyAuthHandler::SendMessageCallback& callback) { 88 const SecurityKeyAuthHandler::SendMessageCallback& callback) {
89 callback_ = callback; 89 callback_ = callback;
90 } 90 }
91 91
92 const GnubbyAuthHandler::SendMessageCallback& 92 const SecurityKeyAuthHandler::SendMessageCallback&
93 MockGnubbyAuthHandler::GetSendMessageCallback() { 93 MockSecurityKeyAuthHandler::GetSendMessageCallback() {
94 return callback_; 94 return callback_;
95 } 95 }
96 96
97 MockMouseCursorMonitor::MockMouseCursorMonitor() {} 97 MockMouseCursorMonitor::MockMouseCursorMonitor() {}
98 98
99 MockMouseCursorMonitor::~MockMouseCursorMonitor() {} 99 MockMouseCursorMonitor::~MockMouseCursorMonitor() {}
100 100
101 } // namespace remoting 101 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/host_mock_objects.h ('k') | remoting/host/remoting_me2me_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698