| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #include "config.h" | 21 #include "config.h" |
| 22 #include "core/layout/LayoutView.h" | 22 #include "core/layout/LayoutView.h" |
| 23 | 23 |
| 24 #include "core/dom/Document.h" | 24 #include "core/dom/Document.h" |
| 25 #include "core/dom/Element.h" | 25 #include "core/dom/Element.h" |
| 26 #include "core/editing/FrameSelection.h" | 26 #include "core/editing/FrameSelection.h" |
| 27 #include "core/frame/LocalFrame.h" | 27 #include "core/frame/LocalFrame.h" |
| 28 #include "core/frame/Settings.h" | 28 #include "core/frame/Settings.h" |
| 29 #include "core/html/HTMLFrameOwnerElement.h" | 29 #include "core/html/HTMLFrameOwnerElement.h" |
| 30 #include "core/html/HTMLIFrameElement.h" | 30 #include "core/html/HTMLIFrameElement.h" |
| 31 #include "core/html/HTMLVideoElement.h" |
| 31 #include "core/inspector/InspectorTraceEvents.h" | 32 #include "core/inspector/InspectorTraceEvents.h" |
| 32 #include "core/layout/HitTestResult.h" | 33 #include "core/layout/HitTestResult.h" |
| 33 #include "core/layout/LayoutFlowThread.h" | 34 #include "core/layout/LayoutFlowThread.h" |
| 34 #include "core/layout/LayoutGeometryMap.h" | 35 #include "core/layout/LayoutGeometryMap.h" |
| 36 #include "core/layout/LayoutMedia.h" |
| 35 #include "core/layout/LayoutPart.h" | 37 #include "core/layout/LayoutPart.h" |
| 36 #include "core/layout/LayoutQuote.h" | 38 #include "core/layout/LayoutQuote.h" |
| 37 #include "core/layout/LayoutScrollbarPart.h" | 39 #include "core/layout/LayoutScrollbarPart.h" |
| 38 #include "core/layout/compositing/DeprecatedPaintLayerCompositor.h" | 40 #include "core/layout/compositing/DeprecatedPaintLayerCompositor.h" |
| 39 #include "core/page/Page.h" | 41 #include "core/page/Page.h" |
| 40 #include "core/paint/DeprecatedPaintLayer.h" | 42 #include "core/paint/DeprecatedPaintLayer.h" |
| 41 #include "core/paint/ViewPainter.h" | 43 #include "core/paint/ViewPainter.h" |
| 42 #include "core/svg/SVGDocumentExtensions.h" | 44 #include "core/svg/SVGDocumentExtensions.h" |
| 43 #include "platform/TraceEvent.h" | 45 #include "platform/TraceEvent.h" |
| 44 #include "platform/TracedValue.h" | 46 #include "platform/TracedValue.h" |
| (...skipping 960 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1005 float scale = m_frameView ? m_frameView->frame().pageZoomFactor() : 1; | 1007 float scale = m_frameView ? m_frameView->frame().pageZoomFactor() : 1; |
| 1006 return viewHeight(IncludeScrollbars) / scale; | 1008 return viewHeight(IncludeScrollbars) / scale; |
| 1007 } | 1009 } |
| 1008 | 1010 |
| 1009 void LayoutView::willBeDestroyed() | 1011 void LayoutView::willBeDestroyed() |
| 1010 { | 1012 { |
| 1011 LayoutBlockFlow::willBeDestroyed(); | 1013 LayoutBlockFlow::willBeDestroyed(); |
| 1012 m_compositor.clear(); | 1014 m_compositor.clear(); |
| 1013 } | 1015 } |
| 1014 | 1016 |
| 1017 void LayoutView::registerMediaForPositionChangeNotification(LayoutMedia* media) |
| 1018 { |
| 1019 if (!m_mediaForPositionNotification.contains(media)) |
| 1020 m_mediaForPositionNotification.append(media); |
| 1021 } |
| 1022 |
| 1023 void LayoutView::unregisterMediaForPositionChangeNotification(LayoutMedia* media
) |
| 1024 { |
| 1025 size_t at = m_mediaForPositionNotification.find(media); |
| 1026 if (at != kNotFound) |
| 1027 m_mediaForPositionNotification.remove(at); |
| 1028 } |
| 1029 |
| 1030 void LayoutView::sendMediaPositionChangeNotifications() |
| 1031 { |
| 1032 for (auto& media : m_mediaForPositionNotification) { |
| 1033 media->notifyPositionMayHaveChanged(); |
| 1034 } |
| 1035 } |
| 1036 |
| 1015 } // namespace blink | 1037 } // namespace blink |
| OLD | NEW |