/external/chromium_org/chrome/browser/resources/chromeos/ |
wrench_menu.js | 138 * ZoomCommand class implements Zoom plus and fullscreen. 173 * ZoomMenuItem which has plus and fullscreen buttons inside. 196 this.fullscreen_.className = 'fullscreen';
|
/external/chromium/chrome/browser/ui/views/frame/ |
browser_view.cc | 721 void BrowserView::SetFullscreen(bool fullscreen) { 722 if (IsFullscreen() == fullscreen) 726 ProcessFullscreen(fullscreen); 728 // On Linux changing fullscreen is async. Ask the window to change it's 729 // fullscreen state, and when done invoke ProcessFullscreen. 730 frame_->GetWindow()->SetFullscreen(fullscreen); [all...] |
browser_view.h | 212 // Returns whether the fullscreen bubble is visible or not. 244 virtual void SetFullscreen(bool fullscreen) OVERRIDE; 479 // Invoked to update the necessary things when our fullscreen state changes 480 // to |fullscreen|. On Windows this is invoked immediately when we toggle the 481 // full screen state. On Linux changing the fullscreen state is async, so we 482 // ask the window to change it's fullscreen state, then when we get 484 void ProcessFullscreen(bool fullscreen); 630 // fullscreen mode on and off to reduce jankiness.
|
/external/chromium_org/content/renderer/pepper/ |
pepper_plugin_instance_impl.cc | [all...] |
pepper_plugin_instance_impl.h | 254 // There are 2 implementations of the fullscreen interface 261 // Because going to fullscreen is asynchronous (but going out is not), there 265 // - fullscreen pending: fullscreen_container_ != NULL 267 // - fullscreen : fullscreen_container_ != NULL 271 // In fullscreen state, events come from the fullscreen container, and 274 // receive events from the fullscreen container, we go to the fullscreen 288 // Because going to/from fullscreen is asynchronous, there are 4 states: 291 // - fullscreen pending: desired_fullscreen_state_ == tru [all...] |
/external/chromium_org/apps/ |
shell_window.cc | 180 // Windows cannot be always-on-top in fullscreen mode for security reasons. 194 Fullscreen(); 301 // fullscreen and it is not forced, we want to allow the user to leave 322 // If the window is currently fullscreen and not forced, ESC should leave 323 // fullscreen. If this code is being called for ESC, that means that the 444 void ShellWindow::Fullscreen() { 446 // Do not enter fullscreen mode if disallowed by pref. 473 // Do not enter fullscreen mode if disallowed by pref. 532 // As a security measure, do not allow fullscreen windows to be on top. 533 // The property will be applied when the window exits fullscreen 534 bool fullscreen = (fullscreen_types_ != FULLSCREEN_TYPE_NONE); local 610 bool fullscreen = (fullscreen_types != FULLSCREEN_TYPE_NONE); local [all...] |
/external/chromium_org/chrome/browser/ui/gtk/apps/ |
native_app_window_gtk.cc | 423 // fullscreen, but whether those state updates have been processed yet is 454 // Fullscreen of non-resizable windows requires them to be made resizable 456 // to fullscreen. 596 bool fullscreen = (fullscreen_types != ShellWindow::FULLSCREEN_TYPE_NONE); local 597 content_thinks_its_fullscreen_ = fullscreen; 598 if (fullscreen) { 603 // immediately, so OnConfigureDebounced completes the fullscreen call. 616 // for a state update to be made before the final fullscreen state comes.
|
/frameworks/base/services/java/com/android/server/am/ |
ActivityRecord.java | 77 boolean fullscreen; // covers the full screen? field in class:ActivityRecord 237 pw.print(prefix); pw.print("fullscreen="); pw.print(fullscreen); 440 fullscreen = ent != null && !ent.array.getBoolean( 474 fullscreen = true; 513 if (fullscreen == toOpaque) { 524 // Keep track of the number of fullscreen activities in this task. 527 fullscreen = toOpaque; [all...] |
TaskRecord.java | 52 int numFullscreen; // Number of fullscreen activities. 200 // Remove r first, and if it wasn't already in the list and it's fullscreen, count it. 201 if (!mActivities.remove(r) && r.fullscreen) { 217 if (mActivities.remove(r) && r.fullscreen) {
|
/external/chromium_org/chrome/browser/resources/chromeos/login/ |
oobe_screen.css | 37 .step.fullscreen {
|
/external/chromium_org/content/child/npapi/ |
npobject_stub.cc | 264 static NPIdentifier fullscreen = local 265 WebBindings::getStringIdentifier("fullScreen"); 266 if (filename == kNewWMPPlugin && id == fullscreen) {
|
/frameworks/base/core/java/android/service/dreams/ |
DreamService.java | 466 * @param fullscreen If true, the fullscreen flag will be set; else it 469 public void setFullscreen(boolean fullscreen) { 470 mFullscreen = fullscreen; 476 * Returns whether or not this dream is in fullscreen mode. Defaults to false. 747 if (isFullscreen()) pw.print(" fullscreen");
|
/external/chromium/chrome/browser/ui/gtk/ |
browser_window_gtk.h | 77 virtual void SetFullscreen(bool fullscreen); 426 // The position and size of the non-maximized, non-fullscreen window.
|
/external/chromium/chrome/browser/ui/panels/ |
panel.cc | 123 void Panel::SetFullscreen(bool fullscreen) {
|
/external/chromium/chrome/browser/ui/views/bookmarks/ |
bookmark_bar_view.h | 145 // Called when fullscreen mode toggles on or off; this affects our layout. 146 void OnFullscreenToggled(bool fullscreen);
|
/external/chromium_org/content/public/common/ |
common_param_traits_macros.h | 216 IPC_STRUCT_TRAITS_MEMBER(fullscreen)
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
ContainerNode.cpp | 419 if (FullscreenElementStack* fullscreen = FullscreenElementStack::fromIfExists(&document())) 420 fullscreen->removeFullScreenElementOfSubtree(child.get()); 503 if (FullscreenElementStack* fullscreen = FullscreenElementStack::fromIfExists(&document())) 504 fullscreen->removeFullScreenElementOfSubtree(this, true);
|
/external/chromium_org/ui/views/widget/desktop_aura/ |
desktop_root_window_host_x11.h | 120 virtual void SetFullscreen(bool fullscreen) OVERRIDE; 235 // Local flag for fullscreen state to avoid a state mismatch between 236 // server and local window_properties_ during app-initiated fullscreen.
|
/external/chromium_org/ui/views/widget/ |
native_widget_aura.cc | 563 void NativeWidgetAura::SetFullscreen(bool fullscreen) { 564 if (!window_ || IsFullscreen() == fullscreen) 569 if (fullscreen) 574 fullscreen ? ui::SHOW_STATE_FULLSCREEN : saved_window_state_); [all...] |
native_widget_aura.h | 113 virtual void SetFullscreen(bool fullscreen) OVERRIDE;
|
/external/chromium_org/chrome/browser/ui/views/frame/ |
browser_view.cc | 777 // detached state in immersive fullscreen. [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/dxgi/src/ |
dxgi_native.cpp | 622 * even if DWM is enabled, and buffer_count buffers in fullscreen mode. 899 BOOL fullscreen; member in struct:GalliumDXGISwapChain [all...] |
/external/mesa3d/src/gallium/state_trackers/d3d1x/dxgi/src/ |
dxgi_native.cpp | 622 * even if DWM is enabled, and buffer_count buffers in fullscreen mode. 899 BOOL fullscreen; member in struct:GalliumDXGISwapChain [all...] |
/frameworks/base/docs/html/design/ |
design_toc.cs | 38 <li><a href="<?cs var:toroot ?>design/patterns/fullscreen.html">Full Screen</a></li>
|
/external/chromium_org/ppapi/proxy/ |
ppb_instance_proxy.cc | 346 PP_Bool fullscreen) { 349 API_ID_PPB_INSTANCE, instance, fullscreen, &result)); [all...] |