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

Unified Diff: remoting/host/host_mock_objects.h

Issue 9316052: Log IP/port of host as well as client in Me2Me host (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
Index: remoting/host/host_mock_objects.h
diff --git a/remoting/host/host_mock_objects.h b/remoting/host/host_mock_objects.h
index e1c91fac00b2707991732eab4414791846ba3fb7..bf5aca40ef479e8d929fa7549e22da2b1983e071 100644
--- a/remoting/host/host_mock_objects.h
+++ b/remoting/host/host_mock_objects.h
@@ -104,9 +104,11 @@ class MockClientSessionEventHandler : public ClientSession::EventHandler {
MOCK_METHOD1(OnSessionFailed, void(ClientSession* client));
MOCK_METHOD2(OnSessionSequenceNumber, void(ClientSession* client,
int64 sequence_number));
- MOCK_METHOD3(OnSessionIpAddress, void(ClientSession* client,
- const std::string& channel_name,
- const net::IPEndPoint& end_point));
+ MOCK_METHOD4(OnSessionIpAddress, void(
+ ClientSession* client,
+ const std::string& channel_name,
+ const net::IPEndPoint& end_point,
+ const net::IPEndPoint& local_end_point));
private:
DISALLOW_COPY_AND_ASSIGN(MockClientSessionEventHandler);

Powered by Google App Engine
This is Rietveld 408576698