OLD | NEW |
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 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 | 304 |
305 if (m_element) | 305 if (m_element) |
306 m_element->setNeedsCompositingUpdate(); | 306 m_element->setNeedsCompositingUpdate(); |
307 } | 307 } |
308 | 308 |
309 void WebPluginContainerImpl::requestFullscreen() { | 309 void WebPluginContainerImpl::requestFullscreen() { |
310 Fullscreen::requestFullscreen(*m_element); | 310 Fullscreen::requestFullscreen(*m_element); |
311 } | 311 } |
312 | 312 |
313 bool WebPluginContainerImpl::isFullscreenElement() const { | 313 bool WebPluginContainerImpl::isFullscreenElement() const { |
314 return Fullscreen::isFullscreenElement(*m_element); | 314 return Fullscreen::isCurrentFullScreenElement(*m_element); |
315 } | 315 } |
316 | 316 |
317 void WebPluginContainerImpl::cancelFullscreen() { | 317 void WebPluginContainerImpl::cancelFullscreen() { |
318 Fullscreen::fullyExitFullscreen(m_element->document()); | 318 Fullscreen::fullyExitFullscreen(m_element->document()); |
319 } | 319 } |
320 | 320 |
321 bool WebPluginContainerImpl::supportsPaginatedPrint() const { | 321 bool WebPluginContainerImpl::supportsPaginatedPrint() const { |
322 return m_webPlugin->supportsPaginatedPrint(); | 322 return m_webPlugin->supportsPaginatedPrint(); |
323 } | 323 } |
324 | 324 |
(...skipping 648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 |
OLD | NEW |