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

  /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...]
  /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/
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...]
  /external/chromium_org/ppapi/tests/
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/extensions/browser/app_window/
app_window.cc 275 // Windows cannot be always-on-top in fullscreen mode for security reasons.
307 Fullscreen();
398 // fullscreen and it is not forced, we want to allow the user to leave
419 // If the window is currently fullscreen and not forced, ESC should leave
420 // fullscreen. If this code is being called for ESC, that means that the
587 // Do not enter fullscreen mode if disallowed by pref.
617 void AppWindow::Fullscreen() {
702 // As a security measure, do not allow fullscreen windows or windows that
704 // window exits fullscreen and moves away from the taskbar.
721 properties->SetBoolean("fullscreen",
862 bool fullscreen = IsFullscreen(); local
    [all...]

Completed in 590 milliseconds