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

Unified Diff: ppapi/thunk/ppb_instance_api.h

Issue 7826017: Add PPB_Fullscreen;0.5. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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: ppapi/thunk/ppb_instance_api.h
===================================================================
--- ppapi/thunk/ppb_instance_api.h (revision 102782)
+++ ppapi/thunk/ppb_instance_api.h (working copy)
@@ -46,11 +46,18 @@
int32_t index) = 0;
// FlashFullscreen.
+ virtual PP_Bool IsFullscreen(PP_Instance instance) = 0;
+ virtual PP_Bool SetFullscreen(PP_Instance instance,
+ PP_Bool fullscreen) = 0;
+ virtual PP_Bool GetScreenSize(PP_Instance instance, PP_Size* size) = 0;
+
+ // FlashFullscreen.
virtual PP_Bool FlashIsFullscreen(PP_Instance instance) = 0;
virtual PP_Bool FlashSetFullscreen(PP_Instance instance,
PP_Bool fullscreen) = 0;
virtual PP_Bool FlashGetScreenSize(PP_Instance instance, PP_Size* size) = 0;
+
brettw 2011/09/27 00:04:20 Extra blank?
polina 2011/09/27 00:49:08 Done.
// InputEvent.
virtual int32_t RequestInputEvents(PP_Instance instance,
uint32_t event_classes) = 0;

Powered by Google App Engine
This is Rietveld 408576698