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

Unified Diff: webkit/plugins/ppapi/plugin_module.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 side-by-side diff with in-line comments
Download patch
Index: webkit/plugins/ppapi/plugin_module.cc
===================================================================
--- webkit/plugins/ppapi/plugin_module.cc (revision 105485)
+++ webkit/plugins/ppapi/plugin_module.cc (working copy)
@@ -51,6 +51,7 @@
#include "ppapi/c/ppb_file_io.h"
#include "ppapi/c/ppb_file_ref.h"
#include "ppapi/c/ppb_file_system.h"
+#include "ppapi/c/ppb_fullscreen.h"
#include "ppapi/c/ppb_graphics_2d.h"
#include "ppapi/c/ppb_graphics_3d.h"
#include "ppapi/c/ppb_image_data.h"
@@ -275,6 +276,8 @@
return ::ppapi::thunk::GetPPB_Flash_UDPSocket_Thunk();
if (strcmp(name, PPB_FULLSCREEN_DEV_INTERFACE_0_4) == 0)
return ::ppapi::thunk::GetPPB_FlashFullscreen_Thunk();
+ if (strcmp(name, PPB_FULLSCREEN_DEV_INTERFACE_0_5) == 0)
dmichael (off chromium) 2011/10/14 15:20:55 Why not PPB_FULLSCREEN_INTERFACE or PPB_FULLSCREEN
polina 2011/10/14 19:15:04 I guess I just copied the one right above it. Sure
dmichael(do not use this one) 2011/10/14 19:23:00 What's the intent? I thought you were trying to ad
polina 2011/10/14 19:24:48 The intent is to be backwards-compatible in case t
+ return ::ppapi::thunk::GetPPB_Fullscreen_Thunk();
if (strcmp(name, PPB_GPU_BLACKLIST_INTERFACE) == 0)
return PPB_GpuBlacklist_Private_Impl::GetInterface();
if (strcmp(name, PPB_GRAPHICS_3D_TRUSTED_INTERFACE) == 0)

Powered by Google App Engine
This is Rietveld 408576698