diff options
author | polina@google.com <polina@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-14 18:29:34 +0000 |
---|---|---|
committer | polina@google.com <polina@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-14 18:29:34 +0000 |
commit | 2fce6124647c2836af7883a9d2eebad2d17b184e (patch) | |
tree | 536c17e4160d1e48aa802ef12f6f25d5dd7453e2 /ppapi | |
parent | a3ee735fe9feb7394231ad867ef42aaea45c011d (diff) | |
download | chromium_src-2fce6124647c2836af7883a9d2eebad2d17b184e.zip chromium_src-2fce6124647c2836af7883a9d2eebad2d17b184e.tar.gz chromium_src-2fce6124647c2836af7883a9d2eebad2d17b184e.tar.bz2 |
PPAPI Fullscreen: remove redundant code errouneously inherited from
FlashFullscreen.
Tested with ppapi/native_client/tests/ppapi_browser/ppb_fullscreen
upgraded with 2D graphics. Will commit in a separate patch.
BUG=41780
TEST=ppapi/tests/test_fullscreen + see above
Review URL: http://codereview.chromium.org/8275031
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@105530 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/api/dev/ppb_fullscreen_dev.idl | 12 | ||||
-rw-r--r-- | ppapi/c/dev/ppb_fullscreen_dev.h | 14 |
2 files changed, 11 insertions, 15 deletions
diff --git a/ppapi/api/dev/ppb_fullscreen_dev.idl b/ppapi/api/dev/ppb_fullscreen_dev.idl index 0fd6373..8dc8844 100644 --- a/ppapi/api/dev/ppb_fullscreen_dev.idl +++ b/ppapi/api/dev/ppb_fullscreen_dev.idl @@ -23,13 +23,11 @@ interface PPB_Fullscreen_Dev { * Switches the plugin instance to/from fullscreen mode. Returns PP_TRUE on * success, PP_FALSE on failure. * - * This unbinds the current 2D or 3D devices. Pending flushes and swapbuffers - * will execute as if the resource was off-screen. The transition to and from - * fullscreen is asynchronous. During the transition, IsFullscreen will - * return the original value, and no 2D or 3D device can be bound. - * The transition ends at DidChangeView when IsFullscreen returns the new - * value. You might receive other DidChangeView calls while in - * transition. + * The transition to and from fullscreen is asynchronous. + * During the transition, IsFullscreen will return the original value, and + * no 2D or 3D device can be bound. The transition ends at DidChangeView + * when IsFullscreen returns the new value. You might receive other + * DidChangeView calls while in transition. * * The transition to fullscreen can only occur while the browser is * processing a user gesture, even if PP_TRUE is returned. diff --git a/ppapi/c/dev/ppb_fullscreen_dev.h b/ppapi/c/dev/ppb_fullscreen_dev.h index 5022c2a..519b19a 100644 --- a/ppapi/c/dev/ppb_fullscreen_dev.h +++ b/ppapi/c/dev/ppb_fullscreen_dev.h @@ -3,7 +3,7 @@ * found in the LICENSE file. */ -/* From dev/ppb_fullscreen_dev.idl modified Tue Oct 11 15:45:41 2011. */ +/* From dev/ppb_fullscreen_dev.idl modified Fri Oct 14 05:00:39 2011. */ #ifndef PPAPI_C_DEV_PPB_FULLSCREEN_DEV_H_ #define PPAPI_C_DEV_PPB_FULLSCREEN_DEV_H_ @@ -36,13 +36,11 @@ struct PPB_Fullscreen_Dev { * Switches the plugin instance to/from fullscreen mode. Returns PP_TRUE on * success, PP_FALSE on failure. * - * This unbinds the current 2D or 3D devices. Pending flushes and swapbuffers - * will execute as if the resource was off-screen. The transition to and from - * fullscreen is asynchronous. During the transition, IsFullscreen will - * return the original value, and no 2D or 3D device can be bound. - * The transition ends at DidChangeView when IsFullscreen returns the new - * value. You might receive other DidChangeView calls while in - * transition. + * The transition to and from fullscreen is asynchronous. + * During the transition, IsFullscreen will return the original value, and + * no 2D or 3D device can be bound. The transition ends at DidChangeView + * when IsFullscreen returns the new value. You might receive other + * DidChangeView calls while in transition. * * The transition to fullscreen can only occur while the browser is * processing a user gesture, even if PP_TRUE is returned. |