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

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

Issue 2202493002: NOT FOR REVIEW: Fullscreen WIP (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 1 month 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, Fullscreen::PrefixedRequest); 311 Fullscreen::requestFullscreen(*m_element, Fullscreen::PrefixedRequest);
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 647 matching lines...) Expand 10 before | Expand all | Expand 10 after
973 // frame view. 973 // frame view.
974 computeClipRectsForPlugin(m_element, windowRect, clipRect, unobscuredRect); 974 computeClipRectsForPlugin(m_element, windowRect, clipRect, unobscuredRect);
975 } 975 }
976 getPluginOcclusions(m_element, this->parent(), frameRect(), cutOutRects); 976 getPluginOcclusions(m_element, this->parent(), frameRect(), cutOutRects);
977 // Convert to the plugin position. 977 // Convert to the plugin position.
978 for (size_t i = 0; i < cutOutRects.size(); i++) 978 for (size_t i = 0; i < cutOutRects.size(); i++)
979 cutOutRects[i].move(-frameRect().x(), -frameRect().y()); 979 cutOutRects[i].move(-frameRect().x(), -frameRect().y());
980 } 980 }
981 981
982 } // namespace blink 982 } // 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