Unnecessary UI elements at settings page hidden for Public accounts.
[chromium-blink-merge.git] / content / renderer / p2p / socket_client_delegate.h
blobc3794636a33bb7daccfddab8db037a6ead37ffda
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_RENDERER_P2P_SOCKET_CLIENT_DELEGATE_H_
6 #define CONTENT_RENDERER_P2P_SOCKET_CLIENT_DELEGATE_H_
8 #include <vector>
10 #include "base/memory/ref_counted.h"
11 #include "content/common/p2p_socket_type.h"
12 #include "net/base/ip_endpoint.h"
14 namespace content {
16 class P2PSocketClient;
18 class P2PSocketClientDelegate {
19 public:
20 virtual ~P2PSocketClientDelegate() { }
22 // Called after the socket has been opened with the local endpoint address
23 // as argument. Please note that in the precence of multiple interfaces,
24 // you should not rely on the local endpoint address if possible.
25 virtual void OnOpen(const net::IPEndPoint& address) = 0;
27 // For a socket that is listening on incoming TCP connectsion, this
28 // function is called when a new client connects.
29 virtual void OnIncomingTcpConnection(const net::IPEndPoint& address,
30 P2PSocketClient* client) = 0;
32 // Called once for each Send() call after the send is complete.
33 virtual void OnSendComplete() = 0;
35 // Called if an non-retryable error occurs.
36 virtual void OnError() = 0;
38 // Called when data is received on the socket.
39 virtual void OnDataReceived(const net::IPEndPoint& address,
40 const std::vector<char>& data,
41 const base::TimeTicks& timestamp) = 0;
44 } // namespace content
46 #endif // CONTENT_RENDERER_P2P_SOCKET_CLIENT_DELEGATE_H_