Searched refs:fullscreen (Results 1 - 25 of 164) sorted by relevance

1234567

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentFullscreen.cpp40 if (Fullscreen* fullscreen = Fullscreen::fromIfExists(document))
41 return fullscreen->fullscreenElement();
52 if (Fullscreen* fullscreen = Fullscreen::fromIfExists(document))
53 return fullscreen->webkitFullScreenKeyboardInputAllowed();
59 if (Fullscreen* fullscreen = Fullscreen::fromIfExists(document))
60 return fullscreen->webkitCurrentFullScreenElement();
/external/chromium_org/remoting/webapp/
H A Dfullscreen.js21 * @param {boolean} fullscreen True to enter full-screen mode; false to leave.
24 remoting.Fullscreen.prototype.activate = function(fullscreen, opt_onDone) { };
51 remoting.fullscreen = null;
H A Dwindow_frame.css16 html.apps-v2 body:not(.fullscreen) {
128 body:not(.connected) .window-fullscreen,
149 html.apps-v2 body.fullscreen #scroller {
153 html.apps-v2 body.fullscreen .window-body {
157 body.fullscreen .title-bar {
161 body.fullscreen .window-title {
165 body.fullscreen .title-bar {
170 body.fullscreen .window-controls-and-title {
174 body.fullscreen .window-controls-stub {
178 body.fullscreen
[all...]
H A Dfullscreen_v2.js49 fullscreen, opt_onDone) {
51 if (this.isActive() == fullscreen) {
64 if (fullscreen) {
65 chrome.app.window.current().fullscreen();
90 document.body.classList.add('fullscreen');
94 document.body.classList.remove('fullscreen');
/external/chromium_org/ui/views/win/
H A Dfullscreen_handler.h27 void SetFullscreen(bool fullscreen);
32 bool fullscreen() const { return fullscreen_; } function in class:views::FullscreenHandler
36 // Information saved before going into fullscreen mode, used to restore the
45 void SetFullscreenImpl(bool fullscreen, bool for_metro);
51 // Saved window information from before entering fullscreen mode.
H A Dfullscreen_handler.cc26 void FullscreenHandler::SetFullscreen(bool fullscreen) { argument
27 if (fullscreen_ == fullscreen)
30 SetFullscreenImpl(fullscreen, false);
48 void FullscreenHandler::SetFullscreenImpl(bool fullscreen, bool for_metro) { argument
51 // Save current window state if not already fullscreen.
54 // before going fullscreen because Windows doesn't seem to hide the
64 fullscreen_ = fullscreen;
/external/chromium_org/ppapi/api/private/
H A Dppb_flash_fullscreen.idl18 * Checks whether the plugin instance is currently in fullscreen mode.
30 [in] PP_Bool fullscreen);
33 * Switches the plugin instance to/from fullscreen mode. Returns PP_TRUE on
40 * transition ends at the next DidChangeView when going into fullscreen mode.
41 * The transition out of fullscreen mode is synchronous.
46 [in] PP_Bool fullscreen);
49 * Gets the size of the screen in pixels. When going fullscreen, the instance
/external/chromium_org/ppapi/thunk/
H A Dppb_flash_fullscreen_api.h20 PP_Bool fullscreen) = 0;
22 // Internal function used to update whether or not Flash fullscreen is enabled
26 PP_Bool fullscreen) = 0;
H A Dppb_flash_fullscreen_thunk.cc25 PP_Bool SetFullscreen(PP_Instance instance, PP_Bool fullscreen) { argument
29 return enter.functions()->SetFullscreen(instance, fullscreen);
H A Dppb_fullscreen_thunk.cc26 PP_Bool SetFullscreen(PP_Instance instance, PP_Bool fullscreen) { argument
31 return enter.functions()->SetFullscreen(instance, fullscreen);
/external/chromium_org/third_party/WebKit/public/web/
H A DWebWindowFeatures.h61 bool fullscreen; member in struct:blink::WebWindowFeatures
80 , fullscreen(false)
102 , fullscreen(f.fullscreen)
125 result.fullscreen = fullscreen;
/external/chromium_org/chrome/renderer/pepper/
H A Dpepper_flash_fullscreen_host.cc37 bool fullscreen) {
40 if (plugin_instance && plugin_instance->FlashSetFullscreen(fullscreen, true))
35 OnSetFullscreen( ppapi::host::HostMessageContext* context, bool fullscreen) argument
/external/chromium_org/ppapi/api/
H A Dppb_fullscreen.idl9 * handling transitions of a module instance to and from fullscreen mode.
21 * toggling fullscreen mode.
26 * fullscreen mode.
31 * @return <code>PP_TRUE</code> if the module instance is in fullscreen mode,
32 * <code>PP_FALSE</code> if the module instance is not in fullscreen mode.
38 * SetFullscreen() switches the module instance to and from fullscreen
41 * The transition to and from fullscreen mode is asynchronous. During the
47 * The transition to fullscreen mode can only occur while the browser is
52 * @param[in] fullscreen <code>PP_TRUE</code> to enter fullscreen mod
[all...]
/external/chromium_org/ppapi/c/private/
H A Dppb_flash_fullscreen.h33 * Checks whether the plugin instance is currently in fullscreen mode.
37 * Switches the plugin instance to/from fullscreen mode. Returns PP_TRUE on
44 * transition ends at the next DidChangeView when going into fullscreen mode.
45 * The transition out of fullscreen mode is synchronous.
47 PP_Bool (*SetFullscreen)(PP_Instance instance, PP_Bool fullscreen);
49 * Gets the size of the screen in pixels. When going fullscreen, the instance
59 PP_Bool (*SetFullscreen)(PP_Instance instance, PP_Bool fullscreen);
/external/chromium_org/ppapi/cpp/
H A Dfullscreen.cc5 #include "ppapi/cpp/fullscreen.h"
36 bool Fullscreen::SetFullscreen(bool fullscreen) { argument
40 instance_.pp_instance(), PP_FromBool(fullscreen)));
H A Dfullscreen.h12 /// and from fullscreen mode.
18 /// The Fullscreen class allowing you to check and toggle fullscreen mode.
31 /// fullscreen mode.
33 /// @return <code>true</code> if the module instance is in fullscreen mode,
34 /// <code>false</code> if the module instance is not in fullscreen mode.
37 /// SetFullscreen() switches the module instance to and from fullscreen
40 /// The transition to and from fullscreen mode is asynchronous. During the
46 /// The transition to fullscreen mode can only occur while the browser is
49 /// @param[in] fullscreen <code>true</code> to enter fullscreen mod
[all...]
/external/chromium_org/ppapi/proxy/
H A Dflash_fullscreen_resource.cc32 PP_Bool fullscreen) {
36 PpapiHostMsg_FlashFullscreen_SetFullscreen(PP_ToBool(fullscreen)));
31 SetFullscreen(PP_Instance instance, PP_Bool fullscreen) argument
/external/qemu/distrib/sdl-1.2.15/src/video/windx5/
H A DSDL_dx5events_c.h36 extern void DX5_DInputReset(_THIS, int fullscreen);
/external/chromium_org/ppapi/c/
H A Dppb_fullscreen.h23 * handling transitions of a module instance to and from fullscreen mode.
34 * toggling fullscreen mode.
39 * fullscreen mode.
44 * @return <code>PP_TRUE</code> if the module instance is in fullscreen mode,
45 * <code>PP_FALSE</code> if the module instance is not in fullscreen mode.
49 * SetFullscreen() switches the module instance to and from fullscreen
52 * The transition to and from fullscreen mode is asynchronous. During the
58 * The transition to fullscreen mode can only occur while the browser is
63 * @param[in] fullscreen <code>PP_TRUE</code> to enter fullscreen mod
[all...]
/external/chromium_org/ppapi/cpp/private/
H A Dflash_fullscreen.h21 bool SetFullscreen(bool fullscreen);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/include/
H A Dsvga_escape.h83 uint32 fullscreen; member in struct:__anon14080
/external/mesa3d/src/gallium/drivers/svga/include/
H A Dsvga_escape.h83 uint32 fullscreen; member in struct:__anon27491
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DWindowFeatures.h55 , fullscreen(false)
78 bool fullscreen; member in struct:blink::WindowFeatures
/external/chromium_org/third_party/mesa/src/include/GL/internal/
H A Dsarea.h76 unsigned int fullscreen; member in struct:_XF86DRISAREAFrame
/external/mesa3d/include/GL/internal/
H A Dsarea.h76 unsigned int fullscreen; member in struct:_XF86DRISAREAFrame

Completed in 617 milliseconds

1234567