HomeSort by relevance Sort by last modified time
    Searched refs:fullscreen (Results 1 - 25 of 150) sorted by null

1 2 3 4 5 6

  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentFullscreen.idl 23 [EnabledAtRuntime=fullscreen] readonly attribute boolean webkitIsFullScreen;
24 [EnabledAtRuntime=fullscreen] readonly attribute boolean webkitFullScreenKeyboardInputAllowed;
25 [EnabledAtRuntime=fullscreen] readonly attribute Element webkitCurrentFullScreenElement;
26 [EnabledAtRuntime=fullscreen] void webkitCancelFullScreen();
29 [EnabledAtRuntime=fullscreen] readonly attribute boolean webkitFullscreenEnabled;
30 [EnabledAtRuntime=fullscreen] readonly attribute Element webkitFullscreenElement;
31 [EnabledAtRuntime=fullscreen] void webkitExitFullscreen();
DocumentFullscreen.cpp 35 if (FullscreenElementStack* fullscreen = FullscreenElementStack::fromIfExists(document))
36 return fullscreen->webkitIsFullScreen();
42 if (FullscreenElementStack* fullscreen = FullscreenElementStack::fromIfExists(document))
43 return fullscreen->webkitFullScreenKeyboardInputAllowed();
49 if (FullscreenElementStack* fullscreen = FullscreenElementStack::fromIfExists(document))
50 return fullscreen->webkitCurrentFullScreenElement();
66 if (FullscreenElementStack* fullscreen = FullscreenElementStack::fromIfExists(document))
67 return fullscreen->webkitFullscreenElement();
  /external/chromium_org/ppapi/thunk/
ppb_flash_fullscreen_api.h 20 PP_Bool fullscreen) = 0;
22 // Internal function used to update whether or not Flash fullscreen is enabled
26 PP_Bool fullscreen) = 0;
ppb_flash_fullscreen_thunk.cc 25 PP_Bool SetFullscreen(PP_Instance instance, PP_Bool fullscreen) {
29 return enter.functions()->SetFullscreen(instance, fullscreen);
ppb_fullscreen_thunk.cc 28 PP_Bool SetFullscreen(PP_Instance instance, PP_Bool fullscreen) {
33 return enter.functions()->SetFullscreen(instance, fullscreen);
  /external/chromium_org/ui/views/win/
fullscreen_handler.h 27 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.
fullscreen_handler.cc 25 void FullscreenHandler::SetFullscreen(bool fullscreen) {
26 if (fullscreen_ == fullscreen)
29 SetFullscreenImpl(fullscreen, false);
47 void FullscreenHandler::SetFullscreenImpl(bool fullscreen, bool for_metro) {
50 // Save current window state if not already fullscreen.
53 // before going fullscreen because Windows doesn't seem to hide the
63 fullscreen_ = fullscreen;
  /external/chromium_org/ppapi/api/private/
ppb_flash_fullscreen.idl 18 * 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/cpp/
fullscreen.h 12 /// and from fullscreen mode.
18 /// The Fullscreen class allowing you to check and toggle fullscreen mode.
19 class Fullscreen {
21 /// A constructor for creating a <code>Fullscreen</code>.
25 explicit Fullscreen(const InstanceHandle& instance);
28 virtual ~Fullscreen();
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
    [all...]
fullscreen.cc 5 #include "ppapi/cpp/fullscreen.h"
23 Fullscreen::Fullscreen(const InstanceHandle& instance)
27 Fullscreen::~Fullscreen() {
30 bool Fullscreen::IsFullscreen() {
36 bool Fullscreen::SetFullscreen(bool fullscreen) {
40 instance_.pp_instance(), PP_FromBool(fullscreen)));
43 bool Fullscreen::GetScreenSize(Size* size)
    [all...]
  /external/chromium_org/ppapi/cpp/private/
flash_fullscreen.h 21 bool SetFullscreen(bool fullscreen);
  /external/chromium/chrome/browser/ui/cocoa/
browser_window_controller_private.h 41 // Find the total height of the floating bar (in fullscreen mode). Safe to call
42 // even when not in fullscreen mode.
46 // width, possibly for fullscreen mode; returns the new maximum y (below the tab
50 fullscreen:(BOOL)fullscreen;
73 // fullscreen mode, with the given frame and fullscreen-mode-status. Should be
74 // called even when not in fullscreen mode to hide the backing view.
76 fullscreen:(BOOL)fullscreen;
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebWindowFeatures.h 61 bool fullscreen; member in struct:WebKit::WebWindowFeatures
76 , fullscreen(false)
98 , fullscreen(f.fullscreen)
121 result.fullscreen = fullscreen;
  /external/chromium_org/ppapi/api/
ppb_fullscreen.idl 9 * 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 mode, o
    [all...]
  /external/chromium_org/ppapi/c/private/
ppb_flash_fullscreen.h 33 * 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/proxy/
flash_fullscreen_resource.cc 32 PP_Bool fullscreen) {
36 PpapiHostMsg_FlashFullscreen_SetFullscreen(PP_ToBool(fullscreen)));
  /external/chromium_org/third_party/WebKit/Source/web/
FullscreenController.cpp 96 FullscreenElementStack* fullscreen = FullscreenElementStack::fromIfExists(doc); local
97 if (!fullscreen)
99 if (fullscreen->isFullScreen(doc)) {
103 fullscreen->webkitCancelFullScreen();
105 fullscreen->webkitWillExitFullScreenForElement(0);
116 if (FullscreenElementStack* fullscreen = FullscreenElementStack::fromIfExists(doc)) {
117 if (fullscreen->webkitIsFullScreen()) {
125 fullscreen->webkitDidExitFullScreenForElement(0);
135 // We are already transitioning to fullscreen for a different element.
141 // We are already in fullscreen mode
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/windx5/
SDL_dx5events_c.h 36 extern void DX5_DInputReset(_THIS, int fullscreen);
  /external/chromium_org/apps/
native_app_window.h 25 virtual void SetFullscreen(bool fullscreen) = 0;
  /external/chromium_org/ppapi/c/
ppb_fullscreen.h 23 * 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 mode, o
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/include/
svga_escape.h 83 uint32 fullscreen; member in struct:__anon14807
  /external/mesa3d/src/gallium/drivers/svga/include/
svga_escape.h 83 uint32 fullscreen; member in struct:__anon25172
  /external/chromium_org/chrome/renderer/pepper/
pepper_flash_fullscreen_host.cc 41 bool fullscreen) {
45 plugin_instance->FlashSetFullscreen(fullscreen, true);
  /external/chromium_org/third_party/WebKit/Source/core/page/
WindowFeatures.h 51 , fullscreen(false)
74 bool fullscreen; member in struct:WebCore::WindowFeatures
  /external/chromium_org/chrome/browser/ui/cocoa/
browser_window_controller_private.h 50 // Shows the informational "how to exit fullscreen" bubble.
55 // width, possibly for fullscreen mode; returns the new maximum y (below the
59 fullscreen:(BOOL)fullscreen;
110 // if in fullscreen mode on Lion or later. This method is safe to call on all
114 // Moves views between windows in preparation for fullscreen mode on Snow
116 // fullscreen mode, so there is no need to move views around.) This method does
119 - (void)moveViewsForFullscreenForSnowLeopard:(BOOL)fullscreen
131 // Called on Snow Leopard or earlier to enter or exit fullscreen. These methods
138 // notifications are used while transitioning to fullscreen mode in Lion o
    [all...]

Completed in 546 milliseconds

1 2 3 4 5 6