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

Side by Side Diff: ppapi/native_client/tests/ppapi_test_lib/get_browser_interface.cc

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
« no previous file with comments | « ppapi/native_client/tests/ppapi_test_lib/get_browser_interface.h ('k') | ppapi/ppapi_cpp.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "native_client/src/shared/platform/nacl_check.h" 5 #include "native_client/src/shared/platform/nacl_check.h"
6 6
7 #include "ppapi/c/dev/ppb_context_3d_dev.h" 7 #include "ppapi/c/dev/ppb_context_3d_dev.h"
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_font_dev.h" 9 #include "ppapi/c/dev/ppb_font_dev.h"
10 #include "ppapi/c/dev/ppb_fullscreen_dev.h"
11 #include "ppapi/c/dev/ppb_memory_dev.h" 10 #include "ppapi/c/dev/ppb_memory_dev.h"
12 #include "ppapi/c/dev/ppb_scrollbar_dev.h" 11 #include "ppapi/c/dev/ppb_scrollbar_dev.h"
13 #include "ppapi/c/dev/ppb_surface_3d_dev.h" 12 #include "ppapi/c/dev/ppb_surface_3d_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_var_deprecated.h" 14 #include "ppapi/c/dev/ppb_var_deprecated.h"
16 #include "ppapi/c/dev/ppb_widget_dev.h" 15 #include "ppapi/c/dev/ppb_widget_dev.h"
17 #include "ppapi/c/ppb_core.h" 16 #include "ppapi/c/ppb_core.h"
18 #include "ppapi/c/ppb_file_io.h" 17 #include "ppapi/c/ppb_file_io.h"
19 #include "ppapi/c/ppb_file_ref.h" 18 #include "ppapi/c/ppb_file_ref.h"
20 #include "ppapi/c/ppb_file_system.h" 19 #include "ppapi/c/ppb_file_system.h"
20 #include "ppapi/c/ppb_fullscreen.h"
21 #include "ppapi/c/ppb_graphics_2d.h" 21 #include "ppapi/c/ppb_graphics_2d.h"
22 #include "ppapi/c/ppb_graphics_3d.h" 22 #include "ppapi/c/ppb_graphics_3d.h"
23 #include "ppapi/c/ppb_image_data.h" 23 #include "ppapi/c/ppb_image_data.h"
24 #include "ppapi/c/ppb_input_event.h" 24 #include "ppapi/c/ppb_input_event.h"
25 #include "ppapi/c/ppb_instance.h" 25 #include "ppapi/c/ppb_instance.h"
26 #include "ppapi/c/ppb_messaging.h" 26 #include "ppapi/c/ppb_messaging.h"
27 #include "ppapi/c/ppb_opengles2.h" 27 #include "ppapi/c/ppb_opengles2.h"
28 #include "ppapi/c/ppb_url_loader.h" 28 #include "ppapi/c/ppb_url_loader.h"
29 #include "ppapi/c/ppb_url_request_info.h" 29 #include "ppapi/c/ppb_url_request_info.h"
30 #include "ppapi/c/ppb_url_response_info.h" 30 #include "ppapi/c/ppb_url_response_info.h"
(...skipping 27 matching lines...) Expand all
58 const PPB_FileRef* PPBFileRef() { 58 const PPB_FileRef* PPBFileRef() {
59 return reinterpret_cast<const PPB_FileRef*>( 59 return reinterpret_cast<const PPB_FileRef*>(
60 GetBrowserInterface(PPB_FILEREF_INTERFACE)); 60 GetBrowserInterface(PPB_FILEREF_INTERFACE));
61 } 61 }
62 62
63 const PPB_FileSystem* PPBFileSystem() { 63 const PPB_FileSystem* PPBFileSystem() {
64 return reinterpret_cast<const PPB_FileSystem*>( 64 return reinterpret_cast<const PPB_FileSystem*>(
65 GetBrowserInterface(PPB_FILESYSTEM_INTERFACE)); 65 GetBrowserInterface(PPB_FILESYSTEM_INTERFACE));
66 } 66 }
67 67
68 const PPB_Fullscreen* PPBFullscreen() {
69 return reinterpret_cast<const PPB_Fullscreen*>(
70 GetBrowserInterfaceSafe(PPB_FULLSCREEN_INTERFACE));
71 }
72
68 const PPB_Graphics2D* PPBGraphics2D() { 73 const PPB_Graphics2D* PPBGraphics2D() {
69 return reinterpret_cast<const PPB_Graphics2D*>( 74 return reinterpret_cast<const PPB_Graphics2D*>(
70 GetBrowserInterfaceSafe(PPB_GRAPHICS_2D_INTERFACE)); 75 GetBrowserInterfaceSafe(PPB_GRAPHICS_2D_INTERFACE));
71 } 76 }
72 77
73 const PPB_Graphics3D* PPBGraphics3D() { 78 const PPB_Graphics3D* PPBGraphics3D() {
74 return reinterpret_cast<const PPB_Graphics3D*>( 79 return reinterpret_cast<const PPB_Graphics3D*>(
75 GetBrowserInterface(PPB_GRAPHICS_3D_INTERFACE)); 80 GetBrowserInterface(PPB_GRAPHICS_3D_INTERFACE));
76 } 81 }
77 82
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 const PPB_CursorControl_Dev* PPBCursorControlDev() { 151 const PPB_CursorControl_Dev* PPBCursorControlDev() {
147 return reinterpret_cast<const PPB_CursorControl_Dev*>( 152 return reinterpret_cast<const PPB_CursorControl_Dev*>(
148 GetBrowserInterface(PPB_CURSOR_CONTROL_DEV_INTERFACE)); 153 GetBrowserInterface(PPB_CURSOR_CONTROL_DEV_INTERFACE));
149 } 154 }
150 155
151 const PPB_Font_Dev* PPBFontDev() { 156 const PPB_Font_Dev* PPBFontDev() {
152 return reinterpret_cast<const PPB_Font_Dev*>( 157 return reinterpret_cast<const PPB_Font_Dev*>(
153 GetBrowserInterface(PPB_FONT_DEV_INTERFACE)); 158 GetBrowserInterface(PPB_FONT_DEV_INTERFACE));
154 } 159 }
155 160
156 const PPB_Fullscreen_Dev* PPBFullscreenDev() {
157 return reinterpret_cast<const PPB_Fullscreen_Dev*>(
158 GetBrowserInterface(PPB_FULLSCREEN_DEV_INTERFACE));
159 }
160
161 const PPB_Memory_Dev* PPBMemoryDev() { 161 const PPB_Memory_Dev* PPBMemoryDev() {
162 return reinterpret_cast<const PPB_Memory_Dev*>( 162 return reinterpret_cast<const PPB_Memory_Dev*>(
163 GetBrowserInterface(PPB_MEMORY_DEV_INTERFACE)); 163 GetBrowserInterface(PPB_MEMORY_DEV_INTERFACE));
164 } 164 }
165 165
166 const PPB_Scrollbar_Dev* PPBScrollbarDev() { 166 const PPB_Scrollbar_Dev* PPBScrollbarDev() {
167 return reinterpret_cast<const PPB_Scrollbar_Dev*>( 167 return reinterpret_cast<const PPB_Scrollbar_Dev*>(
168 GetBrowserInterface(PPB_SCROLLBAR_DEV_INTERFACE)); 168 GetBrowserInterface(PPB_SCROLLBAR_DEV_INTERFACE));
169 } 169 }
170 170
171 const PPB_Surface3D_Dev* PPBSurface3DDev() { 171 const PPB_Surface3D_Dev* PPBSurface3DDev() {
172 return reinterpret_cast<const PPB_Surface3D_Dev*>( 172 return reinterpret_cast<const PPB_Surface3D_Dev*>(
173 GetBrowserInterface(PPB_SURFACE_3D_DEV_INTERFACE)); 173 GetBrowserInterface(PPB_SURFACE_3D_DEV_INTERFACE));
174 } 174 }
175 175
176 const PPB_Testing_Dev* PPBTestingDev() { 176 const PPB_Testing_Dev* PPBTestingDev() {
177 return reinterpret_cast<const PPB_Testing_Dev*>( 177 return reinterpret_cast<const PPB_Testing_Dev*>(
178 GetBrowserInterface(PPB_TESTING_DEV_INTERFACE)); 178 GetBrowserInterface(PPB_TESTING_DEV_INTERFACE));
179 } 179 }
180 180
181 const PPB_Widget_Dev* PPBWidgetDev() { 181 const PPB_Widget_Dev* PPBWidgetDev() {
182 return reinterpret_cast<const PPB_Widget_Dev*>( 182 return reinterpret_cast<const PPB_Widget_Dev*>(
183 GetBrowserInterface(PPB_WIDGET_DEV_INTERFACE)); 183 GetBrowserInterface(PPB_WIDGET_DEV_INTERFACE));
184 } 184 }
OLDNEW
« no previous file with comments | « ppapi/native_client/tests/ppapi_test_lib/get_browser_interface.h ('k') | ppapi/ppapi_cpp.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698