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

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

Issue 8951014: Change the DidChangeView update to take a new ViewChanged resource. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: new patch Created 9 years 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 | Annotate | Revision Log
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 15 matching lines...) Expand all
26 #include "ppapi/c/ppb_graphics_3d.h" 26 #include "ppapi/c/ppb_graphics_3d.h"
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/ppb_view.h"
36 #include "ppapi/c/private/ppb_pdf.h" 37 #include "ppapi/c/private/ppb_pdf.h"
37 #include "ppapi/c/private/ppb_tcp_socket_private.h" 38 #include "ppapi/c/private/ppb_tcp_socket_private.h"
38 #include "ppapi/c/private/ppb_udp_socket_private.h" 39 #include "ppapi/c/private/ppb_udp_socket_private.h"
39 #include "ppapi/c/trusted/ppb_graphics_3d_trusted.h" 40 #include "ppapi/c/trusted/ppb_graphics_3d_trusted.h"
40 #include "ppapi/c/trusted/ppb_image_data_trusted.h" 41 #include "ppapi/c/trusted/ppb_image_data_trusted.h"
41 42
42 struct NaClSrpcRpc; 43 struct NaClSrpcRpc;
43 struct NaClSrpcChannel; 44 struct NaClSrpcChannel;
44 45
45 namespace ppapi_proxy { 46 namespace ppapi_proxy {
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 const PPB_MouseLock* PPBMouseLockInterface(); 118 const PPB_MouseLock* PPBMouseLockInterface();
118 const PPB_PDF* PPBPDFInterface(); 119 const PPB_PDF* PPBPDFInterface();
119 const PPB_Scrollbar_Dev* PPBScrollbarInterface(); 120 const PPB_Scrollbar_Dev* PPBScrollbarInterface();
120 const PPB_TCPSocket_Private* PPBTCPSocketPrivateInterface(); 121 const PPB_TCPSocket_Private* PPBTCPSocketPrivateInterface();
121 const PPB_Testing_Dev* PPBTestingInterface(); 122 const PPB_Testing_Dev* PPBTestingInterface();
122 const PPB_UDPSocket_Private* PPBUDPSocketPrivateInterface(); 123 const PPB_UDPSocket_Private* PPBUDPSocketPrivateInterface();
123 const PPB_URLLoader* PPBURLLoaderInterface(); 124 const PPB_URLLoader* PPBURLLoaderInterface();
124 const PPB_URLRequestInfo* PPBURLRequestInfoInterface(); 125 const PPB_URLRequestInfo* PPBURLRequestInfoInterface();
125 const PPB_URLResponseInfo* PPBURLResponseInfoInterface(); 126 const PPB_URLResponseInfo* PPBURLResponseInfoInterface();
126 const PPB_Var* PPBVarInterface(); // shared 127 const PPB_Var* PPBVarInterface(); // shared
128 const PPB_View* PPBViewInterface();
127 const PPB_WheelInputEvent* PPBWheelInputEventInterface(); 129 const PPB_WheelInputEvent* PPBWheelInputEventInterface();
128 const PPB_Widget_Dev* PPBWidgetInterface(); 130 const PPB_Widget_Dev* PPBWidgetInterface();
129 const PPB_Zoom_Dev* PPBZoomInterface(); 131 const PPB_Zoom_Dev* PPBZoomInterface();
130 132
131 // PPAPI constants used in the proxy. 133 // PPAPI constants used in the proxy.
132 extern const PP_Resource kInvalidResourceId; 134 extern const PP_Resource kInvalidResourceId;
133 135
134 } // namespace ppapi_proxy 136 } // namespace ppapi_proxy
135 137
136 #endif // NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_BROWSER_GLOBALS_H_ 138 #endif // NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_BROWSER_GLOBALS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698