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

Unified Diff: webkit/plugins/ppapi/ppapi_plugin_instance.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 side-by-side diff with in-line comments
Download patch
Index: webkit/plugins/ppapi/ppapi_plugin_instance.h
===================================================================
--- webkit/plugins/ppapi/ppapi_plugin_instance.h (revision 105485)
+++ webkit/plugins/ppapi/ppapi_plugin_instance.h (working copy)
@@ -228,8 +228,8 @@
void Graphics3DContextLost();
// There are 2 implementations of the fullscreen interface
- // PPB_FlashFullscreen_Dev is used by Pepper Flash.
- // PPB_Fullscreen_Dev is intended for other applications including NaCl.
+ // PPB_FlashFullscreen is used by Pepper Flash.
+ // PPB_Fullscreen is intended for other applications including NaCl.
// The two interface are mutually exclusive.
// Implementation of PPB_FlashFullscreen.
@@ -260,7 +260,7 @@
return fullscreen_container_;
}
- // Implementation of PPB_Fullscreen_Dev.
+ // Implementation of PPB_Fullscreen.
// Because going to/from fullscreen is asynchronous, there are 4 states:
// - normal : desired_fullscreen_state_ == false
@@ -568,7 +568,7 @@
// in transition to fullscreen.
bool flash_fullscreen_;
- // Implementation of PPB_Fullscreen_Dev.
+ // Implementation of PPB_Fullscreen.
// Since entering fullscreen mode is an asynchronous operation, we set this
// variable to the desired state at the time we issue the fullscreen change

Powered by Google App Engine
This is Rietveld 408576698