summaryrefslogtreecommitdiffstats
path: root/ppapi
diff options
context:
space:
mode:
authorpolina@google.com <polina@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-14 18:29:34 +0000
committerpolina@google.com <polina@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-14 18:29:34 +0000
commit2fce6124647c2836af7883a9d2eebad2d17b184e (patch)
tree536c17e4160d1e48aa802ef12f6f25d5dd7453e2 /ppapi
parenta3ee735fe9feb7394231ad867ef42aaea45c011d (diff)
downloadchromium_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.idl12
-rw-r--r--ppapi/c/dev/ppb_fullscreen_dev.h14
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.