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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/ppapi/cpp/
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...]
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...]
  /external/chromium_org/chrome/browser/ui/fullscreen/
fullscreen_exit_bubble_type.h 13 // Describes the contents of the fullscreen exit bubble.
14 // For example, if the user already agreed to fullscreen mode and the
20 // For tab fullscreen mode.
21 // More comments about tab and browser fullscreen mode can be found in
22 // chrome/browser/ui/fullscreen/fullscreen_controller.h.
30 // For browser fullscreen mode.
fullscreen_controller.h 10 #include "chrome/browser/ui/fullscreen/fullscreen_exit_bubble_type.h"
24 // There are two different kinds of fullscreen mode - "tab fullscreen" and
25 // "browser fullscreen". "Tab fullscreen" refers to when a tab enters
26 // fullscreen mode via the JS fullscreen API, and "browser fullscreen" refers
27 // to the user putting the browser itself into fullscreen mode from the UI. The
28 // difference is that tab fullscreen has implications for how the contents o
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/api/mouse_lock/
index.html 18 <li>There are two different kinds of fullscreen mode: "tab fullscreen" and
19 "browser fullscreen".
21 <li>Tab fullscreen refers to when a tab enters fullscreen mode via the
22 JS or Pepper fullscreen API. The NaCl Module will enter or
23 exit fullscreen when it has focus and the enter key is pressed.</li>
24 <li>Browser fullscreen refers to the user putting the browser itself
25 into fullscreen mode from the UI (e.g., pressing F11).</li>
37 <li>Involuntary fullscreen or mouselock loss
    [all...]
example.dsc 17 '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/
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/
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/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/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/examples/mouse_lock/
mouse_lock.html 37 <li>exit from "tab fullscreen"/"browser fullscreen"/"Flash fullscreen".
39 <li>"tab fullscreen" refers to when a tab enters fullscreen mode via
40 the JS or Pepper fullscreen API;</li>
41 <li>"browser fullscreen" refers to the user putting the browser
42 itself into fullscreen mode from the UI (e.g., pressing F11).
44 <li>"Flash fullscreen" refers to the fullscreen mode used by Peppe
    [all...]
  /external/chromium_org/chrome/browser/ui/
browser_commands_mac.cc 9 #include "chrome/browser/fullscreen.h"
12 #include "chrome/browser/ui/fullscreen/fullscreen_controller.h"
18 // In simplified fullscreen mode, the "WithChrome" variant does not exist.
19 // Call into the standard cross-platform fullscreen method instead.
  /external/qemu/distrib/sdl-1.2.15/docs/man3/
SDL_WM_ToggleFullScreen.3 3 SDL_WM_ToggleFullScreen \- Toggles fullscreen mode
11 Toggles the application between windowed and fullscreen mode, if supported\&. (X11 is the only target currently supported, BeOS support is experimental)\&.
  /packages/experimental/DreamTheater/res/values/
styles.xml 4 parent="@android:style/Theme.Black.NoTitleBar.Fullscreen">
7 parent="@android:style/Theme.Wallpaper.NoTitleBar.Fullscreen">
  /external/chromium_org/chrome/test/functional/
fullscreen_mouselock.py 22 """TestCase for Fullscreen and Mouse Lock."""
51 """Verify fullscreen and mouse lock automation hooks work."""
55 # Starting off we shouldn't be fullscreen
59 # Go fullscreen
63 # Bubble should be up prompting to allow fullscreen
98 # # ESC key should exit fullscreen and mouse lock.
100 # print "# ESC key should exit fullscreen and mouse lock."
106 # # Check we can go browser fullscreen
107 # print "# Check we can go browser fullscreen"
112 """Helper function to launch fullscreen and expect a prompt
    [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/chrome/browser/extensions/
extension_fullscreen_apitest.cc 31 // Test that fullscreen can be accessed from an extension without permission.
32 ASSERT_TRUE(RunPlatformAppTest("fullscreen/no_permission")) << message_;
35 // Disabled, a user gesture is required for fullscreen. http://crbug.com/174178
38 // Test that fullscreen can be accessed from an extension with permission.
39 ASSERT_TRUE(RunPlatformAppTest("fullscreen/has_permission")) << message_;
  /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;
  /external/chromium_org/chrome/browser/ui/cocoa/
floating_bar_backing_view.h 10 // A custom view that draws the tab strip background for fullscreen windows.
fullscreen_exit_bubble_view.h 10 // A view that handles painting the background for the Fullscreen Exit Bubble.
  /external/chromium_org/content/renderer/media/android/
renderer_media_player_manager.h 39 // Check whether a player can enter fullscreen.
42 // Called when a player entered or exited fullscreen.
46 // Check whether the Webframe is in fullscreen.
64 // WebFrame of the fullscreen video.
  /external/chromium_org/chrome/browser/ui/views/location_bar/
zoom_bubble_view_browsertest.cc 8 #include "chrome/browser/ui/fullscreen/fullscreen_controller.h"
9 #include "chrome/browser/ui/fullscreen/fullscreen_controller_test.h"
40 // non-immersive fullscreen.
45 // The zoom bubble should be anchored when not in fullscreen.
51 // Entering fullscreen should close the bubble. (We enter into tab fullscreen
52 // here because tab fullscreen is non-immersive even when
68 // fullscreen.
74 // Exit fullscreen before ending the test for the sake of sanity.
83 // Immersive fullscreen is CrOS only for now
    [all...]

Completed in 1156 milliseconds

1 2 3 4 5 6 7 8 91011>>