HomeSort by relevance Sort by last modified time
    Searched refs:Fullscreen (Results 1 - 17 of 17) 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/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 21 REGISTER_TEST_CASE(Fullscreen);
108 // 1. Switch to fullscreen.
116 // DidChangeView() will call the callback once in fullscreen mode.
123 return ReportError("IsFullscreen() in fullscreen", false);
125 // 2. Stay in fullscreen. No change.
127 return ReportError("SetFullscreen(true) in fullscreen", true);
129 return ReportError("IsFullscreen() in fullscreen^2", false);
136 return ReportError("SetFullscreen(false) in fullscreen", false);
137 // DidChangeView() will signal once out of fullscreen mode.
192 // Transition to fullscreen can only happen when processing a user gesture
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/app_current_window_internal/
app_current_window_internal_api.cc 58 window->Fullscreen();
  /external/chromium/chrome/browser/ui/cocoa/
browser_window_controller.h 105 // Needed to access the view to move it to/from the fullscreen window.
109 // in fullscreen mode (for window types having a floating bar; it remains nil
117 // The proportion of the floating bar which is shown (in fullscreen mode).
121 // visible (in fullscreen mode), e.g., because of where the mouse is or where
193 // window is currently in fullscreen mode). The frame is returned in Cocoa
286 // window has various features; fullscreen methods are separate).
321 // Methods having to do with fullscreen mode.
322 @interface BrowserWindowController(Fullscreen)
324 // Enters fullscreen mode.
327 // Enters (or exits) fullscreen mode
    [all...]
  /external/chromium_org/ppapi/examples/gles2/
gles2.cc 13 #include "ppapi/cpp/fullscreen.h"
62 pp::Fullscreen(this).SetFullscreen(fullscreen_);
  /external/chromium_org/apps/
shell_window.h 239 // Transitions window into fullscreen, maximized, minimized or restores based
241 void Fullscreen();
373 // Fullscreen entered by app.window api.
375 // Fullscreen entered by HTML requestFullscreen.
shell_window.cc 169 Fullscreen();
380 void ShellWindow::Fullscreen() {
  /external/chromium_org/chrome/browser/ui/cocoa/
browser_window_controller.h 114 // The borderless window used in fullscreen mode. Lion reuses the original
115 // window in fullscreen mode, so this is always nil on Lion.
118 // Tracks whether presentation mode was entered from fullscreen mode or
131 // The size of the original (non-fullscreen) window. This is saved just
132 // before entering fullscreen mode and is only valid when |-isFullscreen|
150 // When going fullscreen for a tab, we need to store the URL and the
151 // fullscreen type, since we can't show the bubble until
259 // window is currently in fullscreen mode). The frame is returned in Cocoa
345 // window has various features; fullscreen and presentation mode methods are
381 // Methods having to do with fullscreen and presentation mode
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/app_window/
app_window_api.cc 94 result->SetBoolean("fullscreen", window->GetBaseWindow()->IsFullscreen());
305 shell_window->Fullscreen();
  /external/chromium_org/chrome/browser/ui/ash/
chrome_shell_delegate.cc 166 // If a window is fullscreen, exit fullscreen.
173 // window decorations which is pretty close to fullscreen. Put v1 apps
174 // into maximized mode instead of fullscreen to avoid showing the ugly
175 // fullscreen exit bubble.
196 shell_window->Fullscreen();
206 // Get out of fullscreen when in fullscreen mode.
  /external/chromium_org/ash/wm/
base_layout_manager_unittest.cc 147 // Tests normal->fullscreen->normal.
148 TEST_F(BaseLayoutManagerTest, Fullscreen) {
152 // Fullscreen window fills the whole display.
160 // Tests fullscreen window size during root window resize.
164 // Fullscreen window fills the whole display.
  /external/chromium_org/chrome/browser/resources/
gesture_config.js 361 * immersive fullscreen in Ash.
365 /** @const */ var IMMERSIVE_TITLE = 'Immersive Fullscreen Configuration';
  /external/chromium_org/chrome/test/ppapi/
ppapi_browsertest.cc     [all...]

Completed in 573 milliseconds