| 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" |
| 11 #include "ppapi/c/dev/ppb_memory_dev.h" | 12 #include "ppapi/c/dev/ppb_memory_dev.h" |
| 12 #include "ppapi/c/dev/ppb_scrollbar_dev.h" | 13 #include "ppapi/c/dev/ppb_scrollbar_dev.h" |
| 13 #include "ppapi/c/dev/ppb_testing_dev.h" | 14 #include "ppapi/c/dev/ppb_testing_dev.h" |
| 14 #include "ppapi/c/dev/ppb_var_array_buffer_dev.h" | 15 #include "ppapi/c/dev/ppb_var_array_buffer_dev.h" |
| 15 #include "ppapi/c/dev/ppb_widget_dev.h" | 16 #include "ppapi/c/dev/ppb_widget_dev.h" |
| 16 #include "ppapi/c/dev/ppb_zoom_dev.h" | 17 #include "ppapi/c/dev/ppb_zoom_dev.h" |
| 17 #include "ppapi/c/pp_instance.h" | 18 #include "ppapi/c/pp_instance.h" |
| 18 #include "ppapi/c/pp_module.h" | 19 #include "ppapi/c/pp_module.h" |
| 19 #include "ppapi/c/ppb.h" | 20 #include "ppapi/c/ppb.h" |
| 20 #include "ppapi/c/ppb_core.h" | 21 #include "ppapi/c/ppb_core.h" |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 // plugin side of the proxy, so they can be used by the shared proxy code | 98 // plugin side of the proxy, so they can be used by the shared proxy code |
| 98 // under both trusted and untrusted compilation. | 99 // under both trusted and untrusted compilation. |
| 99 const PPB_Core* PPBCoreInterface(); // shared | 100 const PPB_Core* PPBCoreInterface(); // shared |
| 100 const PPB_CursorControl_Dev* PPBCursorControlInterface(); | 101 const PPB_CursorControl_Dev* PPBCursorControlInterface(); |
| 101 const PPB_FileIO* PPBFileIOInterface(); | 102 const PPB_FileIO* PPBFileIOInterface(); |
| 102 const PPB_FileRef* PPBFileRefInterface(); | 103 const PPB_FileRef* PPBFileRefInterface(); |
| 103 const PPB_FileSystem* PPBFileSystemInterface(); | 104 const PPB_FileSystem* PPBFileSystemInterface(); |
| 104 const PPB_Find_Dev* PPBFindInterface(); | 105 const PPB_Find_Dev* PPBFindInterface(); |
| 105 const PPB_Font_Dev* PPBFontInterface(); | 106 const PPB_Font_Dev* PPBFontInterface(); |
| 106 const PPB_Fullscreen* PPBFullscreenInterface(); | 107 const PPB_Fullscreen* PPBFullscreenInterface(); |
| 108 const PPB_Gamepad_Dev* PPBGamepadInterface(); |
| 107 const PPB_Graphics2D* PPBGraphics2DInterface(); | 109 const PPB_Graphics2D* PPBGraphics2DInterface(); |
| 108 const PPB_Graphics3D* PPBGraphics3DInterface(); | 110 const PPB_Graphics3D* PPBGraphics3DInterface(); |
| 109 const PPB_Graphics3DTrusted* PPBGraphics3DTrustedInterface(); | 111 const PPB_Graphics3DTrusted* PPBGraphics3DTrustedInterface(); |
| 110 const PPB_ImageData* PPBImageDataInterface(); | 112 const PPB_ImageData* PPBImageDataInterface(); |
| 111 const PPB_ImageDataTrusted* PPBImageDataTrustedInterface(); | 113 const PPB_ImageDataTrusted* PPBImageDataTrustedInterface(); |
| 112 const PPB_InputEvent* PPBInputEventInterface(); | 114 const PPB_InputEvent* PPBInputEventInterface(); |
| 113 const PPB_Instance* PPBInstanceInterface(); | 115 const PPB_Instance* PPBInstanceInterface(); |
| 114 const PPB_KeyboardInputEvent* PPBKeyboardInputEventInterface(); | 116 const PPB_KeyboardInputEvent* PPBKeyboardInputEventInterface(); |
| 115 const PPB_Memory_Dev* PPBMemoryInterface(); // shared | 117 const PPB_Memory_Dev* PPBMemoryInterface(); // shared |
| 116 const PPB_MouseInputEvent* PPBMouseInputEventInterface(); | 118 const PPB_MouseInputEvent* PPBMouseInputEventInterface(); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 130 const PPB_WheelInputEvent* PPBWheelInputEventInterface(); | 132 const PPB_WheelInputEvent* PPBWheelInputEventInterface(); |
| 131 const PPB_Widget_Dev* PPBWidgetInterface(); | 133 const PPB_Widget_Dev* PPBWidgetInterface(); |
| 132 const PPB_Zoom_Dev* PPBZoomInterface(); | 134 const PPB_Zoom_Dev* PPBZoomInterface(); |
| 133 | 135 |
| 134 // PPAPI constants used in the proxy. | 136 // PPAPI constants used in the proxy. |
| 135 extern const PP_Resource kInvalidResourceId; | 137 extern const PP_Resource kInvalidResourceId; |
| 136 | 138 |
| 137 } // namespace ppapi_proxy | 139 } // namespace ppapi_proxy |
| 138 | 140 |
| 139 #endif // NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_BROWSER_GLOBALS_H_ | 141 #endif // NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_BROWSER_GLOBALS_H_ |
| OLD | NEW |