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

Side by Side Diff: ppapi/c/private/ppb_tcp_server_socket_private.h

Issue 9365016: Exposed Listen and Accept methods to Native Client. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Sync. Created 8 years, 10 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 5
6 /* From private/ppb_tcp_server_socket_private.idl, 6 /* From private/ppb_tcp_server_socket_private.idl,
7 * modified Tue Feb 14 12:24:48 2012. 7 * modified Tue Feb 14 14:03:37 2012.
bbudge 2012/02/22 20:54:54 You can leave this file out of CL. The generator t
ygorshenin1 2012/02/24 08:14:57 Done.
8 */ 8 */
9 9
10 #ifndef PPAPI_C_PRIVATE_PPB_TCP_SERVER_SOCKET_PRIVATE_H_ 10 #ifndef PPAPI_C_PRIVATE_PPB_TCP_SERVER_SOCKET_PRIVATE_H_
11 #define PPAPI_C_PRIVATE_PPB_TCP_SERVER_SOCKET_PRIVATE_H_ 11 #define PPAPI_C_PRIVATE_PPB_TCP_SERVER_SOCKET_PRIVATE_H_
12 12
13 #include "ppapi/c/pp_bool.h" 13 #include "ppapi/c/pp_bool.h"
14 #include "ppapi/c/pp_completion_callback.h" 14 #include "ppapi/c/pp_completion_callback.h"
15 #include "ppapi/c/pp_instance.h" 15 #include "ppapi/c/pp_instance.h"
16 #include "ppapi/c/pp_macros.h" 16 #include "ppapi/c/pp_macros.h"
17 #include "ppapi/c/pp_resource.h" 17 #include "ppapi/c/pp_resource.h"
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 void (*StopListening)(PP_Resource tcp_server_socket); 78 void (*StopListening)(PP_Resource tcp_server_socket);
79 }; 79 };
80 80
81 typedef struct PPB_TCPServerSocket_Private_0_1 PPB_TCPServerSocket_Private; 81 typedef struct PPB_TCPServerSocket_Private_0_1 PPB_TCPServerSocket_Private;
82 /** 82 /**
83 * @} 83 * @}
84 */ 84 */
85 85
86 #endif /* PPAPI_C_PRIVATE_PPB_TCP_SERVER_SOCKET_PRIVATE_H_ */ 86 #endif /* PPAPI_C_PRIVATE_PPB_TCP_SERVER_SOCKET_PRIVATE_H_ */
87 87
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698