| OLD | NEW |
| 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" |
| 11 #include "ppapi/c/dev/ppb_gamepad_dev.h" | |
| 12 #include "ppapi/c/dev/ppb_memory_dev.h" | 11 #include "ppapi/c/dev/ppb_memory_dev.h" |
| 13 #include "ppapi/c/dev/ppb_scrollbar_dev.h" | 12 #include "ppapi/c/dev/ppb_scrollbar_dev.h" |
| 14 #include "ppapi/c/dev/ppb_testing_dev.h" | 13 #include "ppapi/c/dev/ppb_testing_dev.h" |
| 15 #include "ppapi/c/dev/ppb_widget_dev.h" | 14 #include "ppapi/c/dev/ppb_widget_dev.h" |
| 16 #include "ppapi/c/dev/ppb_zoom_dev.h" | 15 #include "ppapi/c/dev/ppb_zoom_dev.h" |
| 17 #include "ppapi/c/pp_instance.h" | 16 #include "ppapi/c/pp_instance.h" |
| 18 #include "ppapi/c/pp_module.h" | 17 #include "ppapi/c/pp_module.h" |
| 19 #include "ppapi/c/ppb.h" | 18 #include "ppapi/c/ppb.h" |
| 20 #include "ppapi/c/ppb_core.h" | 19 #include "ppapi/c/ppb_core.h" |
| 21 #include "ppapi/c/ppb_file_io.h" | 20 #include "ppapi/c/ppb_file_io.h" |
| 22 #include "ppapi/c/ppb_file_ref.h" | 21 #include "ppapi/c/ppb_file_ref.h" |
| 23 #include "ppapi/c/ppb_file_system.h" | 22 #include "ppapi/c/ppb_file_system.h" |
| 24 #include "ppapi/c/ppb_fullscreen.h" | 23 #include "ppapi/c/ppb_fullscreen.h" |
| 24 #include "ppapi/c/ppb_gamepad.h" |
| 25 #include "ppapi/c/ppb_graphics_2d.h" | 25 #include "ppapi/c/ppb_graphics_2d.h" |
| 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" |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 // plugin side of the proxy, so they can be used by the shared proxy code | 101 // plugin side of the proxy, so they can be used by the shared proxy code |
| 102 // under both trusted and untrusted compilation. | 102 // under both trusted and untrusted compilation. |
| 103 const PPB_Core* PPBCoreInterface(); // shared | 103 const PPB_Core* PPBCoreInterface(); // shared |
| 104 const PPB_CursorControl_Dev* PPBCursorControlInterface(); | 104 const PPB_CursorControl_Dev* PPBCursorControlInterface(); |
| 105 const PPB_FileIO* PPBFileIOInterface(); | 105 const PPB_FileIO* PPBFileIOInterface(); |
| 106 const PPB_FileRef* PPBFileRefInterface(); | 106 const PPB_FileRef* PPBFileRefInterface(); |
| 107 const PPB_FileSystem* PPBFileSystemInterface(); | 107 const PPB_FileSystem* PPBFileSystemInterface(); |
| 108 const PPB_Find_Dev* PPBFindInterface(); | 108 const PPB_Find_Dev* PPBFindInterface(); |
| 109 const PPB_Font_Dev* PPBFontInterface(); | 109 const PPB_Font_Dev* PPBFontInterface(); |
| 110 const PPB_Fullscreen* PPBFullscreenInterface(); | 110 const PPB_Fullscreen* PPBFullscreenInterface(); |
| 111 const PPB_Gamepad_Dev* PPBGamepadInterface(); | 111 const PPB_Gamepad* PPBGamepadInterface(); |
| 112 const PPB_Graphics2D* PPBGraphics2DInterface(); | 112 const PPB_Graphics2D* PPBGraphics2DInterface(); |
| 113 const PPB_Graphics3D* PPBGraphics3DInterface(); | 113 const PPB_Graphics3D* PPBGraphics3DInterface(); |
| 114 const PPB_Graphics3DTrusted* PPBGraphics3DTrustedInterface(); | 114 const PPB_Graphics3DTrusted* PPBGraphics3DTrustedInterface(); |
| 115 const PPB_ImageData* PPBImageDataInterface(); | 115 const PPB_ImageData* PPBImageDataInterface(); |
| 116 const PPB_ImageDataTrusted* PPBImageDataTrustedInterface(); | 116 const PPB_ImageDataTrusted* PPBImageDataTrustedInterface(); |
| 117 const PPB_InputEvent* PPBInputEventInterface(); | 117 const PPB_InputEvent* PPBInputEventInterface(); |
| 118 const PPB_Instance* PPBInstanceInterface(); | 118 const PPB_Instance* PPBInstanceInterface(); |
| 119 const PPB_KeyboardInputEvent* PPBKeyboardInputEventInterface(); | 119 const PPB_KeyboardInputEvent* PPBKeyboardInputEventInterface(); |
| 120 const PPB_Memory_Dev* PPBMemoryInterface(); // shared | 120 const PPB_Memory_Dev* PPBMemoryInterface(); // shared |
| 121 const PPB_MouseInputEvent* PPBMouseInputEventInterface(); | 121 const PPB_MouseInputEvent* PPBMouseInputEventInterface(); |
| (...skipping 16 matching lines...) Expand all Loading... |
| 138 const PPB_WebSocket* PPBWebSocketInterface(); | 138 const PPB_WebSocket* PPBWebSocketInterface(); |
| 139 const PPB_Widget_Dev* PPBWidgetInterface(); | 139 const PPB_Widget_Dev* PPBWidgetInterface(); |
| 140 const PPB_Zoom_Dev* PPBZoomInterface(); | 140 const PPB_Zoom_Dev* PPBZoomInterface(); |
| 141 | 141 |
| 142 // PPAPI constants used in the proxy. | 142 // PPAPI constants used in the proxy. |
| 143 extern const PP_Resource kInvalidResourceId; | 143 extern const PP_Resource kInvalidResourceId; |
| 144 | 144 |
| 145 } // namespace ppapi_proxy | 145 } // namespace ppapi_proxy |
| 146 | 146 |
| 147 #endif // NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_BROWSER_GLOBALS_H_ | 147 #endif // NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_BROWSER_GLOBALS_H_ |
| OLD | NEW |