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

Side by Side Diff: ppapi/native_client/src/shared/ppapi_proxy/browser_globals.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, deleted comments from SRPC file. 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 #ifndef NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_BROWSER_GLOBALS_H_ 5 #ifndef NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_BROWSER_GLOBALS_H_
6 #define NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_BROWSER_GLOBALS_H_ 6 #define NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_BROWSER_GLOBALS_H_
7 7
8 #include "ppapi/c/dev/ppb_cursor_control_dev.h" 8 #include "ppapi/c/dev/ppb_cursor_control_dev.h"
9 #include "ppapi/c/dev/ppb_find_dev.h" 9 #include "ppapi/c/dev/ppb_find_dev.h"
10 #include "ppapi/c/dev/ppb_font_dev.h" 10 #include "ppapi/c/dev/ppb_font_dev.h"
(...skipping 20 matching lines...) Expand all
31 #include "ppapi/c/ppb_mouse_lock.h" 31 #include "ppapi/c/ppb_mouse_lock.h"
32 #include "ppapi/c/ppb_url_loader.h" 32 #include "ppapi/c/ppb_url_loader.h"
33 #include "ppapi/c/ppb_url_request_info.h" 33 #include "ppapi/c/ppb_url_request_info.h"
34 #include "ppapi/c/ppb_url_response_info.h" 34 #include "ppapi/c/ppb_url_response_info.h"
35 #include "ppapi/c/ppb_var.h" 35 #include "ppapi/c/ppb_var.h"
36 #include "ppapi/c/ppb_var_array_buffer.h" 36 #include "ppapi/c/ppb_var_array_buffer.h"
37 #include "ppapi/c/ppb_view.h" 37 #include "ppapi/c/ppb_view.h"
38 #include "ppapi/c/ppb_websocket.h" 38 #include "ppapi/c/ppb_websocket.h"
39 #include "ppapi/c/private/ppb_net_address_private.h" 39 #include "ppapi/c/private/ppb_net_address_private.h"
40 #include "ppapi/c/private/ppb_pdf.h" 40 #include "ppapi/c/private/ppb_pdf.h"
41 #include "ppapi/c/private/ppb_tcp_server_socket_private.h"
41 #include "ppapi/c/private/ppb_tcp_socket_private.h" 42 #include "ppapi/c/private/ppb_tcp_socket_private.h"
42 #include "ppapi/c/private/ppb_udp_socket_private.h" 43 #include "ppapi/c/private/ppb_udp_socket_private.h"
43 #include "ppapi/c/trusted/ppb_graphics_3d_trusted.h" 44 #include "ppapi/c/trusted/ppb_graphics_3d_trusted.h"
44 #include "ppapi/c/trusted/ppb_image_data_trusted.h" 45 #include "ppapi/c/trusted/ppb_image_data_trusted.h"
45 46
46 struct NaClSrpcRpc; 47 struct NaClSrpcRpc;
47 struct NaClSrpcChannel; 48 struct NaClSrpcChannel;
48 49
49 namespace ppapi_proxy { 50 namespace ppapi_proxy {
50 51
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 const PPB_InputEvent* PPBInputEventInterface(); 117 const PPB_InputEvent* PPBInputEventInterface();
117 const PPB_Instance* PPBInstanceInterface(); 118 const PPB_Instance* PPBInstanceInterface();
118 const PPB_KeyboardInputEvent* PPBKeyboardInputEventInterface(); 119 const PPB_KeyboardInputEvent* PPBKeyboardInputEventInterface();
119 const PPB_Memory_Dev* PPBMemoryInterface(); // shared 120 const PPB_Memory_Dev* PPBMemoryInterface(); // shared
120 const PPB_MouseInputEvent* PPBMouseInputEventInterface(); 121 const PPB_MouseInputEvent* PPBMouseInputEventInterface();
121 const PPB_Messaging* PPBMessagingInterface(); 122 const PPB_Messaging* PPBMessagingInterface();
122 const PPB_MouseLock* PPBMouseLockInterface(); 123 const PPB_MouseLock* PPBMouseLockInterface();
123 const PPB_NetAddress_Private* PPBNetAddressPrivateInterface(); 124 const PPB_NetAddress_Private* PPBNetAddressPrivateInterface();
124 const PPB_PDF* PPBPDFInterface(); 125 const PPB_PDF* PPBPDFInterface();
125 const PPB_Scrollbar_Dev* PPBScrollbarInterface(); 126 const PPB_Scrollbar_Dev* PPBScrollbarInterface();
127 const PPB_TCPServerSocket_Private* PPBTCPServerSocketPrivateInterface();
126 const PPB_TCPSocket_Private* PPBTCPSocketPrivateInterface(); 128 const PPB_TCPSocket_Private* PPBTCPSocketPrivateInterface();
127 const PPB_Testing_Dev* PPBTestingInterface(); 129 const PPB_Testing_Dev* PPBTestingInterface();
128 const PPB_UDPSocket_Private* PPBUDPSocketPrivateInterface(); 130 const PPB_UDPSocket_Private* PPBUDPSocketPrivateInterface();
129 const PPB_URLLoader* PPBURLLoaderInterface(); 131 const PPB_URLLoader* PPBURLLoaderInterface();
130 const PPB_URLRequestInfo* PPBURLRequestInfoInterface(); 132 const PPB_URLRequestInfo* PPBURLRequestInfoInterface();
131 const PPB_URLResponseInfo* PPBURLResponseInfoInterface(); 133 const PPB_URLResponseInfo* PPBURLResponseInfoInterface();
132 const PPB_Var* PPBVarInterface(); // shared 134 const PPB_Var* PPBVarInterface(); // shared
133 const PPB_VarArrayBuffer* PPBVarArrayBufferInterface(); // shared 135 const PPB_VarArrayBuffer* PPBVarArrayBufferInterface(); // shared
134 const PPB_View* PPBViewInterface(); 136 const PPB_View* PPBViewInterface();
135 const PPB_WheelInputEvent* PPBWheelInputEventInterface(); 137 const PPB_WheelInputEvent* PPBWheelInputEventInterface();
136 const PPB_WebSocket* PPBWebSocketInterface(); 138 const PPB_WebSocket* PPBWebSocketInterface();
137 const PPB_Widget_Dev* PPBWidgetInterface(); 139 const PPB_Widget_Dev* PPBWidgetInterface();
138 const PPB_Zoom_Dev* PPBZoomInterface(); 140 const PPB_Zoom_Dev* PPBZoomInterface();
139 141
140 // PPAPI constants used in the proxy. 142 // PPAPI constants used in the proxy.
141 extern const PP_Resource kInvalidResourceId; 143 extern const PP_Resource kInvalidResourceId;
142 144
143 } // namespace ppapi_proxy 145 } // namespace ppapi_proxy
144 146
145 #endif // NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_BROWSER_GLOBALS_H_ 147 #endif // NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_BROWSER_GLOBALS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698