Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(31)

Side by Side Diff: third_party/WebKit/Source/web/WebPluginContainerImpl.cpp

Issue 2557943002: Sync requestFullscreen() and exitFullscreen() algorithms with the spec (Closed)
Patch Set: rebase Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2014 Opera Software ASA. All rights reserved. 3 * Copyright (C) 2014 Opera Software ASA. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 305
306 if (m_element) 306 if (m_element)
307 m_element->setNeedsCompositingUpdate(); 307 m_element->setNeedsCompositingUpdate();
308 } 308 }
309 309
310 void WebPluginContainerImpl::requestFullscreen() { 310 void WebPluginContainerImpl::requestFullscreen() {
311 Fullscreen::requestFullscreen(*m_element); 311 Fullscreen::requestFullscreen(*m_element);
312 } 312 }
313 313
314 bool WebPluginContainerImpl::isFullscreenElement() const { 314 bool WebPluginContainerImpl::isFullscreenElement() const {
315 return Fullscreen::isCurrentFullScreenElement(*m_element); 315 return Fullscreen::isFullscreenElement(*m_element);
316 } 316 }
317 317
318 void WebPluginContainerImpl::cancelFullscreen() { 318 void WebPluginContainerImpl::cancelFullscreen() {
319 Fullscreen::fullyExitFullscreen(m_element->document()); 319 Fullscreen::fullyExitFullscreen(m_element->document());
320 } 320 }
321 321
322 bool WebPluginContainerImpl::supportsPaginatedPrint() const { 322 bool WebPluginContainerImpl::supportsPaginatedPrint() const {
323 return m_webPlugin->supportsPaginatedPrint(); 323 return m_webPlugin->supportsPaginatedPrint();
324 } 324 }
325 325
(...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after
961 // frame view. 961 // frame view.
962 computeClipRectsForPlugin(m_element, windowRect, clipRect, unobscuredRect); 962 computeClipRectsForPlugin(m_element, windowRect, clipRect, unobscuredRect);
963 } 963 }
964 getPluginOcclusions(m_element, this->parent(), frameRect(), cutOutRects); 964 getPluginOcclusions(m_element, this->parent(), frameRect(), cutOutRects);
965 // Convert to the plugin position. 965 // Convert to the plugin position.
966 for (size_t i = 0; i < cutOutRects.size(); i++) 966 for (size_t i = 0; i < cutOutRects.size(); i++)
967 cutOutRects[i].move(-frameRect().x(), -frameRect().y()); 967 cutOutRects[i].move(-frameRect().x(), -frameRect().y());
968 } 968 }
969 969
970 } // namespace blink 970 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/FullscreenController.cpp ('k') | third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698