HomeSort by relevance Sort by last modified time
    Searched refs:Fullscreen (Results 1 - 22 of 22) sorted by null

  /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/remoting/webapp/
fullscreen.js 16 remoting.Fullscreen = function() { };
21 * @param {boolean} fullscreen True to enter full-screen mode; false to leave.
24 remoting.Fullscreen.prototype.activate = function(fullscreen, opt_onDone) { };
29 remoting.Fullscreen.prototype.isActive = function() { };
34 remoting.Fullscreen.prototype.toggle = function() { };
41 remoting.Fullscreen.prototype.addListener = function(callback) { };
48 remoting.Fullscreen.prototype.removeListener = function(callback) { };
62 remoting.Fullscreen.prototype.syncWithMaximize = function(sync) { };
64 /** @type {remoting.Fullscreen} */
    [all...]
fullscreen_v1.js 17 * @implements {remoting.Fullscreen}
40 fullscreen, opt_onDone) {
42 if (this.isActive() == fullscreen) {
45 /** @type {remoting.Fullscreen} */
55 if (fullscreen) {
fullscreen_v2.js 17 * @implements {remoting.Fullscreen}
57 fullscreen, opt_onDone) {
59 if (this.isActive() == fullscreen) {
62 /** @type {remoting.Fullscreen} */
72 if (fullscreen) {
73 chrome.app.window.current().fullscreen();
106 document.body.classList.add('fullscreen');
118 // fullscreen() is called from an onMaximized handler (crbug.com/394819),
124 document.body.classList.remove('fullscreen');
event_handlers.js 119 // Fullscreen.isActive call is not guaranteed to return true until the
123 remoting.fullscreen.addListener(remoting.onResize);
client_session.js 114 this.callToggleFullScreen_ = remoting.fullscreen.toggle.bind(
115 remoting.fullscreen);
591 remoting.fullscreen.syncWithMaximize(false);
592 remoting.fullscreen.activate(
595 remoting.fullscreen.removeListener(listener);
    [all...]
  /external/chromium_org/apps/
app_window_interactive_uitest.cc 21 // enters fullscreen.
22 window->Fullscreen();
28 // The always-on-top property is restored when the window exits fullscreen.
35 // entering and exiting fullscreen mode.
37 window->Fullscreen();
47 // applied immediately because the window is in fullscreen mode.
54 // Ensure the always-on-top property is applied when exiting fullscreen.
62 // Tests are flaky on Mac as transitioning to fullscreen is not instantaneous
63 // and throws errors when entering/exiting fullscreen too quickly.
71 // property is temporarily switched off when entering fullscreen mode
    [all...]
app_window.h 102 // Not fullscreen.
105 // Fullscreen entered by the app.window api.
108 // Fullscreen entered by HTML requestFullscreen().
111 // Fullscreen entered by the OS. ChromeOS uses this type of fullscreen to
112 // enter immersive fullscreen when the user hits the <F4> key.
115 // Fullscreen mode that could not be exited by the user. ChromeOS uses
116 // this type of fullscreen to run an app in kiosk mode.
312 // Transitions window into fullscreen, maximized, minimized or restores based
314 void Fullscreen();
    [all...]
app_window.cc 283 // Windows cannot be always-on-top in fullscreen mode for security reasons.
308 Fullscreen();
431 // fullscreen and it is not forced, we want to allow the user to leave
453 // If the window is currently fullscreen and not forced, ESC should leave
454 // fullscreen. If this code is being called for ESC, that means that the
628 void AppWindow::Fullscreen() {
630 // Do not enter fullscreen mode if disallowed by pref.
656 // Do not enter fullscreen mode if disallowed by pref.
732 // As a security measure, do not allow fullscreen windows or windows that
734 // window exits fullscreen and moves away from the taskbar
893 bool fullscreen = IsFullscreen(fullscreen_types_); local
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/
ps_interface.cc 19 DEFINE_INTERFACE_FUNC(Fullscreen)
48 REQUEST_INTERFACE(Fullscreen, FULLSCREEN)
  /external/chromium_org/native_client_sdk/src/examples/api/mouse_lock/
mouse_lock.h 10 #include "ppapi/cpp/fullscreen.h"
51 // module exits fullscreen mode.
97 pp::Fullscreen fullscreen_;
  /external/chromium_org/ppapi/tests/
test_fullscreen.h 10 #include "ppapi/cpp/fullscreen.h"
51 pp::Fullscreen screen_mode_;
test_fullscreen.cc 20 REGISTER_TEST_CASE(Fullscreen);
105 // 1. Switch to fullscreen.
113 // DidChangeView() will call the callback once in fullscreen mode.
120 return ReportError("IsFullscreen() in fullscreen", false);
122 // 2. Stay in fullscreen. No change.
124 return ReportError("SetFullscreen(true) in fullscreen", true);
126 return ReportError("IsFullscreen() in fullscreen^2", false);
133 return ReportError("SetFullscreen(false) in fullscreen", false);
134 // DidChangeView() will signal once out of fullscreen mode.
189 // Transition to fullscreen can only happen when processing a user gesture
    [all...]
  /external/chromium_org/ppapi/examples/gles2/
gles2.cc 13 #include "ppapi/cpp/fullscreen.h"
62 pp::Fullscreen(this).SetFullscreen(fullscreen_);
  /external/chromium_org/chrome/browser/ui/cocoa/
browser_window_controller.h 125 // The borderless window used in fullscreen mode when Cocoa's System
126 // Fullscreen API is not being used (or not available, before OS 10.7).
134 // fullscreen mode.
139 // of transitioning into fullscreen presentation mode.
142 // The size of the original (non-fullscreen) window. This is saved just
143 // before entering fullscreen mode and is only valid when |-isFullscreen|
161 // When going fullscreen for a tab, we need to store the URL and the
162 // fullscreen type, since we can't show the bubble until
271 // window is currently in fullscreen mode). The frame is returned in Cocoa
379 // window has various features; fullscreen and presentation mode methods ar
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/app_current_window_internal/
app_current_window_internal_api.cc 145 window->Fullscreen();
  /external/chromium_org/ui/keyboard/resources/elements/
kb-key-codes.js 118 'Fullscreen': {keyCode: 0x7A, shiftModifier: false},
  /external/chromium_org/chrome/test/ppapi/
ppapi_browsertest.cc 816 #define MAYBE_Fullscreen Fullscreen
    [all...]
  /external/chromium_org/ash/wm/workspace/
workspace_layout_manager_unittest.cc 193 // Fullscreen -> Normal transition.
489 // When window1 moves to the front the fullscreen state should change.
507 // Closing the window should change the fullscreen state.
635 // Tests normal->fullscreen->normal.
636 TEST_F(WorkspaceLayoutManagerSoloTest, Fullscreen) {
640 // Fullscreen window fills the whole display.
648 // Tests fullscreen window size during root window resize.
652 // Fullscreen window fills the whole display.
    [all...]
  /external/chromium_org/chrome/browser/policy/
policy_browsertest.cc     [all...]
  /build/tools/droiddoc/templates-sdk/assets/js/
docs.js 53 // init the fullscreen toggle click event
54 $('#nav-swap .fullscreen').click(function(){
426 var stylesheet = $('link[rel="stylesheet"][class="fullscreen"]');
646 var stylesheet = $('link[rel="stylesheet"][class="fullscreen"]');
648 // Currently NOT USING fullscreen; enable fullscreen
650 $('#nav-swap .fullscreen').removeClass('disabled');
655 // Currently USING fullscreen; disable fullscreen
657 $('#nav-swap .fullscreen').addClass('disabled')
    [all...]

Completed in 436 milliseconds