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

Side by Side Diff: ppapi/native_client/src/shared/ppapi_proxy/browser_globals.h

Issue 8555002: Added NaCl proxy for TCP/UDP (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase Created 9 years, 1 month 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 16 matching lines...) Expand all
27 #include "ppapi/c/ppb_image_data.h" 27 #include "ppapi/c/ppb_image_data.h"
28 #include "ppapi/c/ppb_input_event.h" 28 #include "ppapi/c/ppb_input_event.h"
29 #include "ppapi/c/ppb_instance.h" 29 #include "ppapi/c/ppb_instance.h"
30 #include "ppapi/c/ppb_messaging.h" 30 #include "ppapi/c/ppb_messaging.h"
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/private/ppb_pdf.h" 36 #include "ppapi/c/private/ppb_pdf.h"
37 #include "ppapi/c/private/ppb_tcp_socket_private.h"
Dmitry Polukhin 2011/11/18 10:20:43 Please sort it.
ygorshenin 2011/11/21 14:13:33 Done.
38 #include "ppapi/c/private/ppb_udp_socket_private.h"
37 #include "ppapi/c/trusted/ppb_graphics_3d_trusted.h" 39 #include "ppapi/c/trusted/ppb_graphics_3d_trusted.h"
38 #include "ppapi/c/trusted/ppb_image_data_trusted.h" 40 #include "ppapi/c/trusted/ppb_image_data_trusted.h"
39 41
40 struct NaClSrpcRpc; 42 struct NaClSrpcRpc;
41 struct NaClSrpcChannel; 43 struct NaClSrpcChannel;
42 44
43 namespace ppapi_proxy { 45 namespace ppapi_proxy {
44 46
45 // These functions handle the browser-side (trusted code) mapping of a browser 47 // These functions handle the browser-side (trusted code) mapping of a browser
46 // instance to instance-specific data, such as the SRPC communication channel. 48 // instance to instance-specific data, such as the SRPC communication channel.
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 const PPB_ImageDataTrusted* PPBImageDataTrustedInterface(); 110 const PPB_ImageDataTrusted* PPBImageDataTrustedInterface();
109 const PPB_InputEvent* PPBInputEventInterface(); 111 const PPB_InputEvent* PPBInputEventInterface();
110 const PPB_Instance* PPBInstanceInterface(); 112 const PPB_Instance* PPBInstanceInterface();
111 const PPB_KeyboardInputEvent* PPBKeyboardInputEventInterface(); 113 const PPB_KeyboardInputEvent* PPBKeyboardInputEventInterface();
112 const PPB_Memory_Dev* PPBMemoryInterface(); // shared 114 const PPB_Memory_Dev* PPBMemoryInterface(); // shared
113 const PPB_MouseInputEvent* PPBMouseInputEventInterface(); 115 const PPB_MouseInputEvent* PPBMouseInputEventInterface();
114 const PPB_Messaging* PPBMessagingInterface(); 116 const PPB_Messaging* PPBMessagingInterface();
115 const PPB_MouseLock* PPBMouseLockInterface(); 117 const PPB_MouseLock* PPBMouseLockInterface();
116 const PPB_PDF* PPBPDFInterface(); 118 const PPB_PDF* PPBPDFInterface();
117 const PPB_Scrollbar_Dev* PPBScrollbarInterface(); 119 const PPB_Scrollbar_Dev* PPBScrollbarInterface();
120 const PPB_TCPSocket_Private* PPBTCPSocketPrivateInterface();
polina 2011/11/18 09:52:10 Not quite related to this CL... Private historical
Dmitry Polukhin 2011/11/18 10:20:43 I think because we would like to let people know t
118 const PPB_Testing_Dev* PPBTestingInterface(); 121 const PPB_Testing_Dev* PPBTestingInterface();
122 const PPB_UDPSocket_Private* PPBUDPSocketPrivateInterface();
119 const PPB_URLLoader* PPBURLLoaderInterface(); 123 const PPB_URLLoader* PPBURLLoaderInterface();
120 const PPB_URLRequestInfo* PPBURLRequestInfoInterface(); 124 const PPB_URLRequestInfo* PPBURLRequestInfoInterface();
121 const PPB_URLResponseInfo* PPBURLResponseInfoInterface(); 125 const PPB_URLResponseInfo* PPBURLResponseInfoInterface();
122 const PPB_Var* PPBVarInterface(); // shared 126 const PPB_Var* PPBVarInterface(); // shared
123 const PPB_WheelInputEvent* PPBWheelInputEventInterface(); 127 const PPB_WheelInputEvent* PPBWheelInputEventInterface();
124 const PPB_Widget_Dev* PPBWidgetInterface(); 128 const PPB_Widget_Dev* PPBWidgetInterface();
125 const PPB_Zoom_Dev* PPBZoomInterface(); 129 const PPB_Zoom_Dev* PPBZoomInterface();
126 130
127 // PPAPI constants used in the proxy. 131 // PPAPI constants used in the proxy.
128 extern const PP_Resource kInvalidResourceId; 132 extern const PP_Resource kInvalidResourceId;
129 133
130 } // namespace ppapi_proxy 134 } // namespace ppapi_proxy
131 135
132 #endif // NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_BROWSER_GLOBALS_H_ 136 #endif // NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_BROWSER_GLOBALS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698