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

1 2 3

  /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/third_party/WebKit/Source/core/dom/
DocumentFullscreen.cpp 29 #include "core/dom/Fullscreen.h"
35 return Fullscreen::fullscreenEnabled(document);
40 if (Fullscreen* fullscreen = Fullscreen::fromIfExists(document))
41 return fullscreen->fullscreenElement();
47 Fullscreen::from(document).exitFullscreen();
52 if (Fullscreen* fullscreen = Fullscreen::fromIfExists(document)
    [all...]
ElementFullscreen.cpp 8 #include "core/dom/Fullscreen.h"
14 Fullscreen::from(element.document()).requestFullscreen(element, Fullscreen::UnprefixedRequest);
19 Fullscreen::from(element.document()).requestFullscreen(element, Fullscreen::PrefixedRequest);
24 Fullscreen::RequestType requestType;
26 requestType = Fullscreen::PrefixedMozillaAllowKeyboardInputRequest;
28 requestType = Fullscreen::PrefixedMozillaRequest;
29 Fullscreen::from(element.document()).requestFullscreen(element, requestType);
Fullscreen.h 46 class Fullscreen FINAL
47 : public NoBaseWillBeGarbageCollectedFinalized<Fullscreen>
50 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(Fullscreen);
52 virtual ~Fullscreen();
54 static Fullscreen& from(Document&);
55 static Fullscreen* fromIfExists(Document&);
97 static Fullscreen* fromIfExistsSlow(Document&);
99 explicit Fullscreen(Document&);
109 void eventQueueTimerFired(Timer<Fullscreen>*);
115 Timer<Fullscreen> m_eventQueueTimer
123 Fullscreen* fullscreen = fromIfExists(element.document()); local
    [all...]
Fullscreen.cpp 29 #include "core/dom/Fullscreen.h"
63 // Fullscreen is supported if there is no previously-established user preference,
75 static bool fullscreenElementReady(const Element& element, Fullscreen::RequestType requestType)
77 // A fullscreen element ready check for an element |element| returns true if all of the
84 // |element|'s node document's fullscreen enabled flag is set.
86 if (requestType == Fullscreen::PrefixedVideoRequest)
92 // |element|'s node document's fullscreen element stack is either empty or its top element is an
94 if (const Element* topElement = Fullscreen::fullscreenElementFrom(element.document())) {
105 // fullscreen element ready check returns true for |element|'s node document's browsing
129 const char* Fullscreen::supplementName(
136 Fullscreen* fullscreen = fromIfExists(document); local
516 Fullscreen& fullscreen = from(document); local
    [all...]
RenderTreeBuilder.cpp 32 #include "core/dom/Fullscreen.h"
135 if (Fullscreen::isActiveFullScreenElement(*element)) {
  /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) { };
50 /** @type {remoting.Fullscreen} */
51 remoting.fullscreen = null
    [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}
49 fullscreen, opt_onDone) {
51 if (this.isActive() == fullscreen) {
54 /** @type {remoting.Fullscreen} */
64 if (fullscreen) {
65 chrome.app.window.current().fullscreen();
90 document.body.classList.add('fullscreen');
94 document.body.classList.remove('fullscreen');
event_handlers.js 120 // Fullscreen.isActive call is not guaranteed to return true until the
124 remoting.fullscreen.addListener(remoting.onResize);
  /external/chromium_org/third_party/WebKit/Source/web/
FullscreenController.cpp 35 #include "core/dom/Fullscreen.h"
80 Fullscreen::from(document).didEnterFullScreenForElement(element.get());
81 ASSERT(Fullscreen::currentFullScreenElementFrom(document) == element);
103 if (Fullscreen* fullscreen = Fullscreen::fromIfExists(*document)) {
104 if (fullscreen->webkitCurrentFullScreenElement()) {
108 Fullscreen::fullyExitFullscreen(*document);
122 fullscreen->didExitFullScreenForElement(0);
132 // We are already transitioning to fullscreen for a different element
    [all...]
WebElement.cpp 36 #include "core/dom/Fullscreen.h"
144 Fullscreen::from(element->document()).requestFullscreen(*element, Fullscreen::PrefixedMozillaAllowKeyboardInputRequest);
WebDocument.cpp 44 #include "core/dom/Fullscreen.h"
231 Fullscreen::fullyExitFullscreen(*unwrap<Document>());
237 if (Fullscreen* fullscreen = Fullscreen::fromIfExists(*const_cast<WebDocument*>(this)->unwrap<Document>()))
238 fullScreenElement = fullscreen->webkitCurrentFullScreenElement();
  /external/chromium_org/extensions/browser/app_window/
app_window_interactive_uitest.cc 18 // enters fullscreen.
19 window->Fullscreen();
25 // The always-on-top property is restored when the window exits fullscreen.
32 // entering and exiting fullscreen mode.
34 window->Fullscreen();
44 // applied immediately because the window is in fullscreen mode.
51 // Ensure the always-on-top property is applied when exiting fullscreen.
59 // Tests are flaky on Mac as transitioning to fullscreen is not instantaneous
60 // and throws errors when entering/exiting fullscreen too quickly.
68 // property is temporarily switched off when entering fullscreen mode
    [all...]
app_window.h 104 // Not fullscreen.
107 // Fullscreen entered by the app.window api.
110 // Fullscreen entered by HTML requestFullscreen().
113 // Fullscreen entered by the OS. ChromeOS uses this type of fullscreen to
114 // enter immersive fullscreen when the user hits the <F4> key.
117 // Fullscreen mode that could not be exited by the user. ChromeOS uses
118 // this type of fullscreen to run an app in kiosk mode.
275 // Enable or disable fullscreen mode. |type| specifies which type of
276 // fullscreen mode to change (note that disabling one type of fullscreen ma
    [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/third_party/WebKit/Source/core/rendering/
RenderFullScreen.cpp 28 #include "core/dom/Fullscreen.h"
84 Fullscreen& fullscreen = Fullscreen::from(document()); local
85 if (fullscreen.fullScreenRenderer() == this)
86 fullscreen.fullScreenRendererDestroyed();
153 Fullscreen::from(*document).setFullScreenRenderer(fullscreenRenderer);
  /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/third_party/WebKit/Source/core/page/
EventHandler.h 61 class Fullscreen;
314 bool isKeyEventAllowedInFullScreen(Fullscreen*, const PlatformKeyboardEvent&) const;
  /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 // AppKit fullscreen mode.
137 // Only adjust the tab strip once while entering fullscreen. See the
144 // AppKit fullscreen mode.
149 // of transitioning into fullscreen presentation mode.
152 // The size of the original (non-fullscreen) window. This is saved just
153 // before entering fullscreen mode and is only valid when |-isFullscreen|
171 // When going fullscreen for a tab, we need to store the URL and the
172 // fullscreen type, since we can't show the bubble unti
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSDefaultStyleSheets.cpp 37 #include "core/dom/Fullscreen.h"
183 if (!m_fullscreenStyleSheet && Fullscreen::isFullScreen(element->document())) {

Completed in 682 milliseconds

1 2 3