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

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

Issue 8291002: PPAPI Fullscreen: move out of Dev. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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 | 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"
11 #include "ppapi/c/dev/ppb_fullscreen_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_mouse_lock_dev.h" 12 #include "ppapi/c/dev/ppb_mouse_lock_dev.h"
14 #include "ppapi/c/dev/ppb_scrollbar_dev.h" 13 #include "ppapi/c/dev/ppb_scrollbar_dev.h"
15 #include "ppapi/c/dev/ppb_testing_dev.h" 14 #include "ppapi/c/dev/ppb_testing_dev.h"
16 #include "ppapi/c/dev/ppb_var_deprecated.h" 15 #include "ppapi/c/dev/ppb_var_deprecated.h"
17 #include "ppapi/c/dev/ppb_widget_dev.h" 16 #include "ppapi/c/dev/ppb_widget_dev.h"
18 #include "ppapi/c/dev/ppb_zoom_dev.h" 17 #include "ppapi/c/dev/ppb_zoom_dev.h"
19 #include "ppapi/c/pp_instance.h" 18 #include "ppapi/c/pp_instance.h"
20 #include "ppapi/c/pp_module.h" 19 #include "ppapi/c/pp_module.h"
21 #include "ppapi/c/ppb.h" 20 #include "ppapi/c/ppb.h"
22 #include "ppapi/c/ppb_core.h" 21 #include "ppapi/c/ppb_core.h"
23 #include "ppapi/c/ppb_file_io.h" 22 #include "ppapi/c/ppb_file_io.h"
24 #include "ppapi/c/ppb_file_ref.h" 23 #include "ppapi/c/ppb_file_ref.h"
25 #include "ppapi/c/ppb_file_system.h" 24 #include "ppapi/c/ppb_file_system.h"
25 #include "ppapi/c/ppb_fullscreen.h"
26 #include "ppapi/c/ppb_graphics_2d.h" 26 #include "ppapi/c/ppb_graphics_2d.h"
27 #include "ppapi/c/ppb_graphics_3d.h" 27 #include "ppapi/c/ppb_graphics_3d.h"
28 #include "ppapi/c/ppb_image_data.h" 28 #include "ppapi/c/ppb_image_data.h"
29 #include "ppapi/c/ppb_input_event.h" 29 #include "ppapi/c/ppb_input_event.h"
30 #include "ppapi/c/ppb_instance.h" 30 #include "ppapi/c/ppb_instance.h"
31 #include "ppapi/c/ppb_messaging.h" 31 #include "ppapi/c/ppb_messaging.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"
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 // Functions marked "shared" are to be provided by both the browser and the 98 // Functions marked "shared" are to be provided by both the browser and the
99 // plugin side of the proxy, so they can be used by the shared proxy code 99 // plugin side of the proxy, so they can be used by the shared proxy code
100 // under both trusted and untrusted compilation. 100 // under both trusted and untrusted compilation.
101 const PPB_Core* PPBCoreInterface(); // shared 101 const PPB_Core* PPBCoreInterface(); // shared
102 const PPB_CursorControl_Dev* PPBCursorControlInterface(); 102 const PPB_CursorControl_Dev* PPBCursorControlInterface();
103 const PPB_FileIO* PPBFileIOInterface(); 103 const PPB_FileIO* PPBFileIOInterface();
104 const PPB_FileRef* PPBFileRefInterface(); 104 const PPB_FileRef* PPBFileRefInterface();
105 const PPB_FileSystem* PPBFileSystemInterface(); 105 const PPB_FileSystem* PPBFileSystemInterface();
106 const PPB_Find_Dev* PPBFindInterface(); 106 const PPB_Find_Dev* PPBFindInterface();
107 const PPB_Font_Dev* PPBFontInterface(); 107 const PPB_Font_Dev* PPBFontInterface();
108 const PPB_Fullscreen_Dev* PPBFullscreenInterface(); 108 const PPB_Fullscreen* PPBFullscreenInterface();
109 const PPB_Graphics2D* PPBGraphics2DInterface(); 109 const PPB_Graphics2D* PPBGraphics2DInterface();
110 const PPB_Graphics3D* PPBGraphics3DInterface(); 110 const PPB_Graphics3D* PPBGraphics3DInterface();
111 const PPB_Graphics3DTrusted* PPBGraphics3DTrustedInterface(); 111 const PPB_Graphics3DTrusted* PPBGraphics3DTrustedInterface();
112 const PPB_ImageData* PPBImageDataInterface(); 112 const PPB_ImageData* PPBImageDataInterface();
113 const PPB_ImageDataTrusted* PPBImageDataTrustedInterface(); 113 const PPB_ImageDataTrusted* PPBImageDataTrustedInterface();
114 const PPB_InputEvent* PPBInputEventInterface(); 114 const PPB_InputEvent* PPBInputEventInterface();
115 const PPB_Instance* PPBInstanceInterface(); 115 const PPB_Instance* PPBInstanceInterface();
116 const PPB_KeyboardInputEvent* PPBKeyboardInputEventInterface(); 116 const PPB_KeyboardInputEvent* PPBKeyboardInputEventInterface();
117 const PPB_Memory_Dev* PPBMemoryInterface(); // shared 117 const PPB_Memory_Dev* PPBMemoryInterface(); // shared
118 const PPB_MouseInputEvent* PPBMouseInputEventInterface(); 118 const PPB_MouseInputEvent* PPBMouseInputEventInterface();
119 const PPB_Messaging* PPBMessagingInterface(); 119 const PPB_Messaging* PPBMessagingInterface();
120 const PPB_MouseLock_Dev* PPBMouseLockInterface(); 120 const PPB_MouseLock_Dev* PPBMouseLockInterface();
121 const PPB_PDF* PPBPDFInterface(); 121 const PPB_PDF* PPBPDFInterface();
122 const PPB_Scrollbar_Dev* PPBScrollbarInterface(); 122 const PPB_Scrollbar_Dev* PPBScrollbarInterface();
123 const PPB_Testing_Dev* PPBTestingInterface(); 123 const PPB_Testing_Dev* PPBTestingInterface();
124 const PPB_URLLoader* PPBURLLoaderInterface(); 124 const PPB_URLLoader* PPBURLLoaderInterface();
125 const PPB_URLRequestInfo* PPBURLRequestInfoInterface(); 125 const PPB_URLRequestInfo* PPBURLRequestInfoInterface();
126 const PPB_URLResponseInfo* PPBURLResponseInfoInterface(); 126 const PPB_URLResponseInfo* PPBURLResponseInfoInterface();
127 const PPB_Var* PPBVarInterface(); // shared 127 const PPB_Var* PPBVarInterface(); // shared
128 const PPB_WheelInputEvent* PPBWheelInputEventInterface(); 128 const PPB_WheelInputEvent* PPBWheelInputEventInterface();
129 const PPB_Widget_Dev* PPBWidgetInterface(); 129 const PPB_Widget_Dev* PPBWidgetInterface();
130 const PPB_Zoom_Dev* PPBZoomInterface(); 130 const PPB_Zoom_Dev* PPBZoomInterface();
131 131
132 // PPAPI constants used in the proxy. 132 // PPAPI constants used in the proxy.
133 extern const PP_Resource kInvalidResourceId; 133 extern const PP_Resource kInvalidResourceId;
134 134
135 } // namespace ppapi_proxy 135 } // namespace ppapi_proxy
136 136
137 #endif // NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_BROWSER_GLOBALS_H_ 137 #endif // NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_BROWSER_GLOBALS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698